-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 2.38 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "webpack-blocks-happypack",
"version": "0.2.0",
"description": "A webpack block that adds happypack support to your webpack config.",
"license": "MIT",
"repository": "diegohaz/webpack-blocks-happypack",
"main": "index.js",
"author": {
"name": "Diego Haz",
"email": "[email protected]",
"url": "github.com/diegohaz"
},
"engines": {
"node": ">=6"
},
"files": [
"dist",
"index.js"
],
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint src test",
"flow": "flow check",
"docs": "documentation readme src --section=API",
"clean": "rimraf dist",
"prebuild": "npm run docs && npm run clean",
"build": "babel src -d dist",
"watch": "npm-watch",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"prepublish": "npm run lint && npm test && npm run build",
"postpublish": "git push origin master --follow-tags"
},
"watch": {
"test": "{src,test}/*.js",
"lint": "{src,test}/*.js",
"build": "src"
},
"jest": {
"testRegex": "/test/.*test\\.js$",
"testEnvironment": "node"
},
"keywords": [
"webpack-blocks-happypack",
"webpack-blocks",
"webpack",
"happypack"
],
"dependencies": {
"happypack": "^3.0.3",
"lodash": "^4.17.5",
"webpack-merge": "^4.1.1"
},
"devDependencies": {
"@webpack-blocks/assets": "^1.0.0-rc",
"@webpack-blocks/babel": "^1.0.0-rc",
"@webpack-blocks/extract-text": "^1.0.0-rc",
"@webpack-blocks/webpack": "^1.0.0-rc",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.2.0",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.18.0",
"documentation": "^5.3.5",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-flowtype": "^2.42.0",
"eslint-plugin-flowtype-errors": "^3.3.7",
"eslint-plugin-import": "^2.8.0",
"flow-bin": "^0.65.0",
"jest-cli": "^22.2.1",
"npm-watch": "^0.3.0",
"opn-cli": "^3.1.0",
"pretty-format": "^22.1.0",
"rimraf": "^2.6.2",
"webpack": "^3.10.0"
},
"peerDependencies": {
"@webpack-blocks/webpack": "^1.0.0-rc",
"webpack": "2.x || 3.x"
}
}