This repository has been archived by the owner on Mar 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 125
/
package.json
73 lines (73 loc) · 2.18 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": "happypack",
"main": "./lib/HappyPlugin.js",
"description": "webpack speed booster, makes you happy!",
"version": "5.0.1",
"scripts": {
"lint": "eslint lib",
"test": "npm run test:webpack1",
"test:webpack1": "NODE_PATH='./packages:./upstream/webpack1/node_modules' mocha --opts .mocha",
"test:webpack2": "NODE_PATH='./packages:./upstream/webpack2/node_modules' mocha --opts .mocha",
"test:webpack3": "NODE_PATH='./packages:./upstream/webpack3/node_modules' mocha --opts .mocha",
"test:webpack4": "NODE_PATH='./packages:./upstream/webpack4/node_modules' mocha --opts .mocha",
"test:coverage": "nyc --silent npm run test:webpack1 && nyc --silent --no-clean npm run test:webpack2 && nyc --silent --no-clean npm run test:webpack3 && nyc --no-clean npm run test:webpack4",
"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",
"prepublishOnly": "npm run lint && npm run test:webpack1 && npm run test:webpack2 && npm run test:webpack3 && npm run test:webpack4 && npm run test:examples"
},
"engines": {
"node": ">=6.11.5"
},
"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": {
"codecov": "1.0.1",
"eslint": "4.18.2",
"mocha": "3.0.1",
"multiline-slash": "2.0.0",
"nyc": "11.6.0"
},
"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"
]
},
"files": [
"lib",
"CHANGELOG.md",
"LICENSE",
"loader.js",
"README.md"
]
}