forked from mikechau/sprockets-stats-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
{
"name": "sprockets-stats-webpack-plugin",
"version": "0.3.0",
"description": "Add sprockets metadata to webpack stats for asset manifest generation.",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"test": "ava",
"build:integration": "cd example && npm run reinstall && npm run build",
"test:all": "npm run test && npm run build:integration && ava ./example/test/SprocketsManifest.test.js",
"test:ci": "npm run test && ava ./example/test/SprocketsManifest.test.js",
"lint": "eslint ./test ./lib index.js",
"check": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikechau/sprockets-stats-webpack-plugin.git"
},
"keywords": [
"sprockets",
"rails",
"assets",
"manifest",
"webpack",
"plugin"
],
"author": "Mike Chau (@mikechau)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikechau/sprockets-stats-webpack-plugin/issues"
},
"homepage": "https://github.com/mikechau/sprockets-stats-webpack-plugin#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": "^1.13.1"
},
"dependencies": {
"loader-utils": "^0.2.15",
"lodash.merge": "^4.4.0",
"walk": "^2.3.9",
"webpack-custom-stats-patch": "https://github.com/sopherio/webpack-custom-stats-patch"
},
"ava": {
"files": [
"test/**/*.js"
],
"failFast": true,
"verbose": true
}
}