forked from amireh/happypack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.58 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
{
"name": "happypack",
"main": "./lib/HappyPlugin.js",
"description": "webpack speed booster, makes you happy!",
"version": "4.0.0-beta.1",
"scripts": {
"lint": "eslint lib",
"test": "mocha 'lib/**/*.test.js'",
"test:coverage": "nyc npm test",
"test-examples": "./examples/build-all.sh",
"coverage": "nyc report",
"coverage:html": "nyc report --reporter html",
"coverage:ci": "nyc report --reporter=text-lcov > tmp/coverage.lcov && codecov --disable search -f tmp/coverage.lcov",
"prepublish": "npm run lint && npm run test && npm run test-examples"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/amireh/happypack.git"
},
"keywords": [
"webpack",
"plugin",
"fast",
"speed",
"performance",
"compilation",
"transformer",
"loader",
"happiness",
"happy"
],
"author": "Ahmad Amireh",
"license": "MIT",
"bugs": {
"url": "https://github.com/amireh/happypack/issues"
},
"homepage": "https://github.com/amireh/happypack#readme",
"devDependencies": {
"chai": "3.5.0",
"codecov": "1.0.1",
"eslint": "2.13.1",
"fs-extra": "0.30.0",
"mocha": "3.0.1",
"multiline-slash": "2.0.0",
"nyc": "7.1.0",
"sinon": "1.17.5",
"webpack": "1.13.1",
"webpack-dev-server": "1.14.1"
},
"dependencies": {
"async": "1.5.0",
"json-stringify-safe": "5.0.1",
"loader-utils": "1.1.0",
"serialize-error": "^2.1.0"
},
"nyc": {
"include": [
"lib/*.js"
],
"exclude": [
"lib/**/*.test.js",
"lib/HappyTestUtils.js"
]
}
}