-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 KB
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": "create-builder",
"version": "0.0.10",
"description": "Application builder.",
"main": "index.js",
"scripts": {
"test": "yarn jest",
"precommit": "yarn lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rabbitlive/builder.git"
},
"keywords": [
"webpack"
],
"author": "Rabbit <yfhj1990@hotmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/rabbitlive/builder/issues"
},
"bin": {
"create-builder": "bin/cli.js"
},
"homepage": "https://github.com/rabbitlive/builder#readme",
"devDependencies": {
"babel-jest": "^20.0.3",
"chunk-manifest-webpack-plugin": "^1.1.2",
"clean-webpack-plugin": "^0.1.16",
"del": "^3.0.0",
"extract-text-webpack-plugin": "^3.0.0",
"flow-bin": "^0.51.0",
"glob": "^7.1.2",
"jest": "^20.0.4",
"lint-staged": "^3.6.1",
"prettier": "^1.5.2",
"webpack-chunk-hash": "^0.4.0",
"webpack-dev-server": "^2.5.1",
"webpack-manifest-plugin": "^1.2.1"
},
"dependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"webpack": "^3.3.0",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.6.0"
},
"lint-staged": {
"*.js": [
"yarn prettier -- --write --no-semi --single-quote --parser=flow",
"git add"
]
}
}