-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.02 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
{
"name": "web2desktop",
"version": "1.0.4",
"description": "A cli scaffolding tool to generate electron app using webview",
"bin": {
"web2desktop": "./bin/web2desktop.js"
},
"scripts": {
"test": "xo",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anshumanv/web2desktop.git"
},
"keywords": [
"cli",
"scaffold",
"electron",
"desktop",
"native"
],
"author": "anshumanv",
"license": "MIT",
"bugs": {
"url": "https://github.com/anshumanv/web2desktop/issues"
},
"homepage": "https://github.com/anshumanv/web2desktop#readme",
"dependencies": {
"chalk": "2.4.1",
"commander": "2.19.0",
"conjecture": "0.1.2",
"cross-spawn": "6.0.5",
"egad": "0.2.0",
"husky": "1.2.0",
"inquirer": "6.2.1",
"lodash.kebabcase": "4.1.1",
"stringify-author": "0.1.3"
},
"devDependencies": {
"lint-staged": "^8.1.0",
"xo": "^0.23.0"
},
"lint-staged": {
"*.js": ["xo --fix", "git add"]
}
}