-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 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
{
"name": "newrelic-video-shaka",
"version": "0.3.0",
"description": "New relic tracker for shaka player",
"main": "src/index.js",
"scripts": {
"test": "jest --coverage",
"build": "webpack -p",
"build:dev": "webpack --mode development",
"watch": "webpack -p --progress --color --watch",
"watch:dev": "webpack --progress --color --watch",
"prezip": "npm run build",
"zip": "zip -P newrelic -x '*.DS_Store' -r shaka.zip dist samples README.md CHANGELOG.md EULA.md",
"clean": "rm -rf dist *.zip",
"deploy": "node scripts/deploy.js"
},
"repository": {
"type": "git",
"url": "https://github.com/newrelic/video-shaka-js.git"
},
"author": "Jordi Aguilar",
"license": "MIT",
"dependencies": {
"codem-isoboxer": "^0.3.10",
"newrelic-video-core": "git+https://github.com/newrelic/video-core-js.git"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@babel/preset-env": "^7.0.0",
"aws-sdk": "^2.920.0",
"babel-loader": "^8.0.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"videojs-ima": "^0.6.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}