forked from newrelic/video-dash-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 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
{
"name": "newrelic-video-dash",
"version": "0.1.0",
"description": "New relic tracker for dash player",
"main": "src/index.js",
"scripts": {
"test": "jest --coverage",
"build": "webpack --mode -production",
"build:dev": "webpack --mode development",
"watch": "webpack --progress --color --watch",
"watch:dev": "webpack --progress --color --watch --mode development",
"prezip": "npm run build",
"zip": "zip -P newrelic -x '*.DS_Store' -r dash.zip dist samples README.md CHANGELOG.md EULA.md",
"clean": "rm -rf dist *.zip"
},
"repository": {
"type": "git",
"url": "https://github.com/newrelic/video-dash-js"
},
"author": "Malay Chandan",
"license": "MIT",
"dependencies": {
"newrelic-video-core": "git+https://github.com/newrelic/video-core-js.git"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/node": "^7.25.0",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@babel/preset-env": "^7.25.4",
"@babel/register": "^7.24.6",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"jest": "^29.7.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}