forked from RoyalBingBong/meView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.54 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
{
"name": "meview",
"description": "Image/Video viewer for typical web media formats. Also supports zip-archives.",
"main": "app/js/main.js",
"version": "1.5.2",
"repository": {
"type": "git",
"url": "https://github.com/RoyalBingBong/meView"
},
"bugs": {
"url": "https://github.com/RoyalBingBong/meView/issues"
},
"homepage": "https://github.com/RoyalBingBong/meView#readme",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron .",
"clean": "rimraf app/js",
"clean:dist": "rimraf dist/",
"debug": "cross-env ELECTRON_ENV=development npm run start",
"babel": "npm run clean && babel -d app/js/ app/src/",
"babel:w": "npm run clean && babel -w -d app/js/ app/src/",
"prebabel:prod*": "npm run clean",
"babel:prod": "cross-env BABEL_ENV=production babel -d app/js app/src/",
"build:win": "npm run babel && npm run clean:dist && build -w",
"build:mac": "npm run babel && npm run clean:dist && build -m",
"build:linux": "npm run babel && npm run clean:dist && build -l",
"debugbuild:win": "npm run clean && npm run clean:dist && npm run babel && build -w --dir",
"release": "npm run babel"
},
"keywords": [],
"author": "David Koch <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-remove-console": "^6.9.0",
"cross-env": "^5.1.3",
"electron": "^1.8.6",
"electron-builder": "^20.11.1",
"rimraf": "^2.6.2"
}
}