-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.3 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
{
"private": true,
"name": "esbin",
"productName": "ESBIN",
"description": "JavaScript debugging made simple.",
"version": "0.0.0",
"repository": {},
"scripts": {
"test": "echo lol",
"app": "electron app/",
"dist": "npm run dist:mac && npm run dist:win && npm run dist:linux",
"dist:mac": "build --mac",
"dist:win": "build --win --ia32",
"dist:linux": "build --linux deb tar.xz",
"postinstall": "install-app-deps",
"lint": "vbuild --eslint",
"dev": "vbuild -d",
"build": "vbuild"
},
"build": {
"appId": "com.egoistian.devdocs-app",
"asar": true,
"mac": {
"category": "public.app-category.developer-tools"
},
"linux": {
"category": "public.app-category.developer-tools"
},
"win": {
"target": [
"nsis"
]
},
"nsis": {
"oneClick": false
}
},
"devDependencies": {
"electron": "^1.4.15",
"electron-builder": "^15.0.0",
"electron-builder-squirrel-windows": "^15.3.0",
"electron-devtools-installer": "^2.0.0",
"postcss-property-lookup": "^1.2.1",
"raw-loader": "^0.5.1",
"vbuild": "^6.24.6"
},
"license": "MIT",
"dependencies": {
"codemirror": "^5.24.2",
"native-toast": "^1.1.0",
"pify": "^2.3.0",
"vue-inline": "^1.0.1",
"vuex": "^2.2.1"
}
}