-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
34 lines (34 loc) · 1.08 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
{
"name": "newrelic-video-html5",
"version": "3.0.0",
"description": "New relic tracker for HTML5 players",
"main": "src/index.js",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"watch": "webpack -p --progress --color --watch --mode production",
"watch:dev": "webpack --progress --color --watch --mode development",
"prezip": "npm run build",
"zip": "zip -P newrelic -x '*.DS_Store' -r html5.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-html5-js.git"
},
"author": "Jordi Aguilar",
"license": "MIT",
"dependencies": {
"newrelic-video-core": "github:newrelic/video-core-js#stable"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@babel/preset-env": "^7.24.5",
"aws-sdk": "^2.920.0",
"babel-loader": "^9.1.3",
"webpack": "^5.91.0",
"webpack-cli": "^4.9.2"
}
}