-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1 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
43
{
"name": "new-relic-source-map-webpack-plugin",
"version": "1.0.0",
"description": "Upload source maps to new relic as part of a webpack build.",
"main": "index.js",
"repository": "[email protected]:1stdibs/new-relic-source-map-webpack-plugin.git",
"author": "Walker Flynn <[email protected]>",
"license": "MIT",
"keywords": [
"webpack",
"plugin",
"newrelic",
"new relic",
"sourcemap",
"source map",
"upload",
"uploader"
],
"scripts": {
"test": "jest"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"coverageDirectory": "<rootDir>/_coverage",
"collectCoverageFrom" : ["**/*.{js,jsx}", "!**/node_modules/**"],
"coverageReporters": ["text", "text-summary"],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"devDependencies": {
"jest": "^19.0.2"
},
"dependencies": {
"@newrelic/publish-sourcemap": "^4.1.2"
}
}