-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 2.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@bitmovin/player-integration-conviva",
"version": "6.1.1",
"description": "Conviva analytics integration for the Bitmovin Player",
"repository": {
"type": "git",
"url": "https://github.com/bitmovin/bitmovin-player-analytics-conviva.git"
},
"main": "./dist/bitmovin-player-analytics-conviva.js",
"types": "./dist/bitmovin-player-analytics-conviva.d.ts",
"scripts": {
"prepare": "husky install",
"format": "prettier --write src/ spec/ example/",
"lint": "node_modules/.bin/tslint -c tslint.json 'src/**/*.ts' && kacl lint",
"start": "./node_modules/.bin/webpack-dev-server --open --config webpack.dev.js",
"clean": "rm -rf ./dist",
"build": "npm run build:describe && npm run lint && npm run clean && npm run build:lib && npm run build:bundle",
"build:describe": "echo \"Building Player Integration...\"",
"build:lib": "./node_modules/.bin/tsc -p ./tsconfig.build.json --module commonjs --outDir ./dist/lib --declaration",
"build:esm": "./node_modules/.bin/tsc -p ./tsconfig.build.json --module es6 --outDir ./dist/lib-esm --declaration",
"build:bundle": "./node_modules/.bin/webpack --config webpack.prod.js",
"test": "./node_modules/.bin/jest",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"**/*.{ts,js}": "prettier --write --ignore-unknown",
"CHANGELOG.md": "kacl lint --filename"
},
"author": "Bitmovin",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.1",
"bitmovin-player": "^8.193.0",
"bitmovin-player-ui": "^3.75.0",
"changelog-parser": "^3.0.1",
"create-file-webpack": "^1.0.2",
"husky": "^8.0.3",
"jest": "^24.1.0",
"jest-mock-extended": "^3.0.7",
"kacl": "^1.1.1",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"semver": "^7.6.2",
"string-replace-loader": "^2.1.1",
"ts-jest": "^23.10.5",
"ts-loader": "^8.4.0",
"tslint": "^5.11.0",
"typescript": "^4.9.5",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.1.5"
},
"peerDependencies": {
"@convivainc/conviva-js-coresdk": "^4.7.6",
"bitmovin-player": "^8.193.0"
}
}