-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.01 KB
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": "remove-debug-loader",
"version": "0.2.6",
"description": "webpack loader to remove debug(or any method you defined) from your code",
"main": "index.js",
"scripts": {
"test": "eslint ./ && cross-env NODE_ENV=test nyc ava --verbose",
"coverage": "nyc report --reporter=lcov",
"report": "cross-env NODE_ENV=test nyc ava && yarn run coverage"
},
"keywords": [
"webpack",
"debug",
"strip",
"remove"
],
"repository": "https://github.com/ddhp/remove-debug-loader",
"author": "ddhp",
"license": "MIT",
"dependencies": {
"loader-utils": "^1.1.0"
},
"devDependencies": {
"ava": "^0.23.0",
"bluebird": "^3.5.1",
"codecov": "^3.0.0",
"cross-env": "^5.1.1",
"eslint": "^4.16.0",
"eslint-config-webpack": "^1.2.5",
"eslint-plugin-import": "^2.8.0",
"memory-fs": "^0.4.1",
"nyc": "^11.3.0",
"webpack": "^3.8.1"
},
"ava": {
"files": [
"test/**/*.test.js",
"!test/fixtures/**/*",
"!test/helpers/**/*"
]
}
}