-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
40 lines (40 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
39
40
{
"name": "newrelic-video-core",
"version": "0.33.0",
"description": "New Relic video tracking core library",
"main": "src/index.js",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"watch": "webpack --mode production --progress --color --watch",
"watch:dev": "webpack --progress --color --watch",
"clean": "rm -rf dist coverage doc",
"test": "nyc --reporter=html --reporter=text mocha --require @babel/register",
"doc": "jsdoc -c jsdoc.json -d documentation",
"deploy": "node scripts/deploy.js"
},
"repository": {
"type": "git",
"url": "https://github.com/newrelic/video-core-js"
},
"author": "Jordi Aguilar",
"contributors": [
"Andreu Santarén Llop"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@babel/preset-env": "^7.24.5",
"@babel/register": "^7.24.6",
"aws-sdk": "^2.920.0",
"babel-loader": "^9.1.3",
"chai": "^4.3.4",
"diff": "^5.0.0",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"sinon": "^2.4.1",
"webpack": "^5.91.0",
"webpack-cli": "^4.9.2"
}
}