-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "devination",
"version": "0.0.4",
"description": "a cross plattform offline documentation browser",
"productName": "devination",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"elm": "elm make src/Main.elm --output elm.js || true",
"fix_mismatch": "./node_modules/.bin/electron-rebuild",
"ready": "elm make src/Main.elm --output elm.js && cp elm.js app/ && cp -r index.html main.js elm-stuff bootstrap.js assets app && mkdir -p app/docsets && npm install --prefix app",
"elm:watch": "chokidar '**/*.elm' -c 'npm run elm'",
"watch": "npm run start & npm run elm:watch & wait",
"postinstall": "install-app-deps",
"pack-rpm": "npm run ready && build --linux rpm",
"pack-all": "npm run ready && build --dir",
"build-mac": "./node_modules/.bin/electron-packager ./app --platform mas --out dist",
"build-linux": "./node_modules/.bin/electron-packager ./app --platform linux --out dist",
"build-windows": "./node_modules/.bin/electron-packager ./app --platform win32 --out dist",
"dist": "npm run ready && build -mwl --x64",
"release": "npm run ready && build -wl --publish always"
},
"repository": {
"type": "git",
"url": "[email protected]:devination-docs/devination.git"
},
"keywords": [],
"author": "Joris Morger <[email protected]> (http://github.com/JorisM/)",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/devination-docs/devination/issues"
},
"homepage": "http://devination.gitlab.io/",
"devDependencies": {
"chokidar": "^1.6.1",
"chokidar-cli": "^1.2.0",
"electron": "^1.6.2",
"electron-builder": "^15.6.2",
"electron-packager": "^8.6.0",
"electron-rebuild": "^1.5.7",
"electron-settings": "^2.2.4"
},
"dependencies": {
"args": "^2.3.0",
"electron-auto-updater": "^1.0.0",
"electron-settings": "^2.2.4",
"materialize-css": "^0.98.0",
"node-uuid": "^1.4.7",
"request": "^2.81.0",
"sql.js": "^0.4.0",
"sqlite3": "https://github.com/mapbox/node-sqlite3/tarball/master#3.18.0",
"temp": "^0.8.3",
"wget": "*"
},
"build": {
"appId": "com.electron.devination-app",
"mac": {
"category": "public.app-category.developers",
"publish": [
"github"
]
},
"win": {
"publish": [
"github"
]
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm"
],
"publish": [
"github"
]
}
}
}