-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
{
"name": "newrelic-video-akamai",
"version": "0.6.1",
"description": "New relic tracker for Akamai Media Player",
"main": "src/index.js",
"scripts": {
"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 amp.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-akamai-js.git"
},
"author": "Jordi Aguilar",
"contributors": [
"Andreu Santarén Llop"
],
"license": "MIT",
"dependencies": {
"newrelic-video-core": "github:newrelic/video-core-js"
},
"devDependencies": {
"aws-sdk": "^2.921.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
}
}