-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.45 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
{
"name": "create-electron-react",
"version": "0.0.10",
"description": "A CLI for Electron & React.js to quick start boilerplate.",
"repository": "zenghongtu/create-electron-react",
"author": "zenghongtu <[email protected]>",
"main": "index.js",
"license": "MIT",
"reveal": true,
"bin": {
"create-electron-react": "index.js"
},
"scripts": {
"start": "node .",
"lint": "standard *.js lib/*.js",
"lint:fix": "standard --fix *.js lib/*.js",
"test": "ava -v *.test.js lib/*.test.js",
"prepublishOnly": "node ./scripts/genTemplateFiles.js",
"patch": "yarn version --patch",
"minor": "yarn version --minor",
"major": "yarn version --major"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"keywords": [
"electron",
"react",
"create-react-app",
"cli",
"boilerplate",
"react",
"redux",
"sass",
"webpack",
"hot",
"reload"
],
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"conf": "^2.2.0",
"cp-file": "^6.2.0",
"execa": "^1.0.0",
"git-config-path": "^2.0.0",
"github-username": "^4.1.0",
"globby": "^9.2.0",
"handlebars": "^4.1.0",
"inquirer": "^6.5.2",
"make-dir": "^2.1.0",
"ora": "^3.1.0",
"p-each-series": "^1.0.0",
"parse-git-config": "^3.0.0",
"which": "^1.3.1"
},
"devDependencies": {
"ava": "^1.4.1",
"ignore": "^5.1.4",
"rmfr": "^2.0.0",
"standard": "^12.0.1"
}
}