UNPKG

1.46 kBJSONView Raw
1{
2 "name": "happypack",
3 "main": "./lib/HappyPlugin.js",
4 "description": "webpack speed booster, makes you happy!",
5 "version": "2.0.1",
6 "scripts": {
7 "lint": "./node_modules/.bin/eslint lib",
8 "test": "node --harmony --harmony_destructuring ./node_modules/.bin/_mocha 'lib/**/*.test.js'",
9 "test-examples": "./examples/build-all.sh",
10 "coverage": "node --harmony --harmony_destructuring ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha 'lib/**/*.test.js'",
11 "coverage_ci": "npm run coverage && ./node_modules/.bin/codecov",
12 "prepublish": "npm run lint && npm run test && npm run test-examples"
13 },
14 "repository": {
15 "type": "git",
16 "url": "git+ssh://git@github.com/amireh/happypack.git"
17 },
18 "keywords": [
19 "webpack",
20 "plugin",
21 "fast",
22 "speed",
23 "compilation",
24 "transformer",
25 "loader",
26 "happiness",
27 "happy"
28 ],
29 "author": "Ahmad Amireh",
30 "license": "MIT",
31 "bugs": {
32 "url": "https://github.com/amireh/happypack/issues"
33 },
34 "homepage": "https://github.com/amireh/happypack#readme",
35 "devDependencies": {
36 "chai": "^3.4.1",
37 "codecov": "^1.0.1",
38 "eslint": "^1.10.3",
39 "fs-extra": "^0.26.4",
40 "istanbul": "^1.0.0-alpha.2",
41 "mocha": "^2.3.4",
42 "multiline-slash": "^1.0.0",
43 "sinon": "^1.17.2",
44 "webpack": "^1.12.9",
45 "webpack-dev-server": "^1.14.1"
46 },
47 "dependencies": {
48 "async": "^1.5.0",
49 "json-stringify-safe": "^5.0.1"
50 }
51}