-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
{
"name": "@bitmovin/player-web-integration-cmcd",
"version": "0.2.1",
"description": "",
"types": "dist/js/CmcdIntegration.d.ts",
"browser": "dist/js/bitmovin-player-integration-cmcd.js",
"main": "dist/js/bitmovin-player-integration-cmcd.js",
"repository": {
"type": "git",
"url": "ssh://[email protected]:bitmovin/bitmovin-player-web-integration-cmcd.git"
},
"scripts": {
"format": "prettier --write src/ test/",
"prepare": "husky install",
"start": "webpack serve --open --config tooling/webpack.dev.js",
"debug": "webpack --config tooling/webpack.dev.js",
"build": "webpack --config tooling/webpack.prod.js",
"clean": "rm -R dist/js",
"test": "jest",
"test-watch": "jest --watch"
},
"lint-staged": {
"**/*.{ts,js}": "prettier --write --ignore-unknown",
"CHANGELOG.md": "kacl lint --filename"
},
"author": "Bitmovin",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.4.2",
"changelog-parser": "^3.0.1",
"husky": "^8.0.3",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"kacl": "^1.1.1",
"lint-staged": "^13.1.1",
"prettier": "^2.8.4",
"semver": "^7.6.3",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"peerDependencies": {
"bitmovin-player": "^8.104.0"
}
}