-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.17 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.17 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
43
44
45
46
47
48
49
50
51
52
{
"name": "webpack-custom-stats-patch",
"version": "1.0.0",
"description": "Patches webpack's stats to include custom attributes.",
"main": "index.js",
"files": [
"lib",
"index.js",
"README.md",
"LICENSE"
],
"scripts": {
"test": "ava",
"lint": "eslint ./test ./lib index.js",
"check": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikechau/webpack-custom-stats-patch.git"
},
"keywords": [
"webpack"
],
"author": "Mike Chau (@mikechau)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikechau/webpack-custom-stats-patch/issues"
},
"homepage": "https://github.com/mikechau/webpack-custom-stats-patch#readme",
"devDependencies": {
"ava": "^0.15.2",
"eslint": "^2.13.1",
"eslint-config-mc": "^0.6.5",
"eslint-plugin-ava": "^2.5.0",
"eslint-plugin-import": "^1.8.1",
"webpack": "^2.2.0-rc.4"
},
"peerDependencies": {
"webpack": ">=2.2.0-rc.4"
},
"dependencies": {
"lodash.merge": "^4.4.0"
},
"ava": {
"files": [
"test/**/*.js",
"!test/mocks/**/*"
],
"failFast": true,
"verbose": true
}
}