forked from dpwilhelmsen/new-relic-source-map-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
73 lines (73 loc) · 1.88 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@edx/new-relic-source-map-webpack-plugin",
"version": "1.0.0-semantically-released",
"description": "Upload source maps to new relic as part of a webpack build.",
"main": "index.js",
"repository": "https://github.com/edx/new-relic-source-map-webpack-plugin.git",
"author": "edX",
"license": "AGPL-3.0",
"keywords": [
"webpack",
"plugin",
"newrelic",
"new relic",
"sourcemap",
"source map",
"upload",
"uploader"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"lint": "eslint './**/*.+(js)'",
"prettier:fix": "prettier '**/*.{js,json}' --write",
"lint-staged": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier -l"
],
"*.js": [
"eslint --max-warnings 0"
]
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"collectCoverage": true,
"coverageDirectory": "<rootDir>/_coverage",
"collectCoverageFrom": [
"**/*.{js, jsx}",
"!**/node_modules/**",
"!**/__tests__/**",
"!prettier.config.js"
],
"coverageReporters": [
"text",
"text-summary"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/__fixtures__",
"<rootDir>/__tests__/__output__"
]
},
"devDependencies": {
"eslint": "~6.1.0",
"eslint-config-1stdibs": "^6.0.1",
"husky": "^3.0.3",
"jest": "^24.8.0",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2",
"webpack": "^5.68.0"
},
"dependencies": {
"@newrelic/publish-sourcemap": "^5.0.1"
}
}