-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.92 KB
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
{
"name": "github-issues",
"productName": "Github Issues",
"version": "1.0.1",
"description": "Github Issues",
"private": true,
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "electron . --debug",
"lint": "standard",
"test": "mocha tests && npm run lint",
"sign-exe": "signcode ./out/github-issues-win32-ia32/github-issues.exe --cert ./github-issues.p12 --prompt --name 'Github Issues' --url 'http://electron.atom.io'",
"sign-installer": "signcode ./out/windows-installer/github-issuesSetup.exe --cert ~/github-issues.p12 --prompt --name 'Github Issues' --url 'http://electron.atom.io'",
"pack-mac": "electron-packager . --asar --overwrite --platform=darwin --arch=x64 --icon=assets/app-icon/mac/app.icns --prune=true --out=out --osx-sign.identity='Developer ID Application: GitHub' --extend-info=assets/mac/info.plist",
"pack-win": "electron-packager . github-issues --asar --overwrite --platform=win32 --arch=ia32 --icon=assets/app-icon/win/app.ico --prune=true --out=out --version-string.CompanyName='GitHub, Inc.' --version-string.FileDescription='Github Issues' --version-string.ProductName='Github Issues'",
"pack-linux": "electron-packager . --asar --overwrite --platform=linux --arch=x64 --icon=assets/app-icon/png/64.png --prune=true --out=out",
"package": "npm run pack-mac && npm run pack-win && npm run pack-linux",
"installer": "node ./script/installer.js",
"windows-store": "node ./script/windows-store.js",
"mas": "./script/mas.sh",
"prepare-release": "npm run package && npm run sign-exe && npm run installer && npm run sign-installer",
"release": "node ./script/release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voyageth/github-issues.git"
},
"keywords": [
"Electron",
"API",
"demo"
],
"author": "voyageth",
"license": "MIT",
"bugs": {
"url": "https://github.com/voyageth/github-issues/issues"
},
"homepage": "https://github.com/voyageth/github-issues#readme",
"devDependencies": {
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"devtron": "^1.0.0",
"electron-packager": "^7.0.3",
"electron-prebuilt": "~1.1.3",
"electron-windows-store": "^0.3.0",
"electron-winstaller": "^2.2.0",
"mocha": "^2.3.4",
"request": "^2.70.0",
"rimraf": "^2.5.2",
"signcode": "^0.4.0",
"spectron": "~3.0.0",
"standard": "^6.0.8"
},
"dependencies": {
"angular2": "2.0.0-beta.0",
"electron": "^0.4.1",
"electron-json-storage": "^2.0.0",
"electron-shortcut-normalizer": "^1.0.0",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.3",
"github": "latest",
"glob": "^6.0.4",
"highlight.js": "^9.3.0",
"markdown": "^0.5.0",
"nconf": "^0.8.4",
"nedb": "^1.8.0",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.0",
"systemjs": "0.19.6",
"zone.js": "0.5.10"
},
"standard": {
"env": {
"mocha": true
}
}
}