forked from sporebat/elite-journal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.25 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "elite-journal",
"productName": "Elite Journal",
"version": "1.13.9",
"description": "Parsing the elite dangerous journal and putting it in a cool format!",
"license": "MIT",
"private": true,
"repository": "willyb321/elite-journal",
"author": {
"name": "willyb321",
"email": "[email protected]",
"url": "tehsuperwilly.tech"
},
"scripts": {
"test": "gulp test",
"prestart": "gulp && gulp index",
"start": "set NODE_ENV=development && electron app/",
"pack": "gulp index && gulp build:pack",
"dist": "gulp index && gulp build:dist",
"release": "gulp index && gulp build:dist",
"lint": "xo",
"docs": "jsdoc -c ./conf.json",
"postinstall": "(electron-builder install-app-deps)",
"deps": "(ncu -au && cd app && ncu -au)"
},
"keywords": [
"electron-app",
"electron"
],
"devDependencies": {
"ava": "^0.23.0",
"babel-core": "^7.0.0-beta.2",
"babel-plugin-source-map-support": "^1.0.0",
"babel-preset-env": "^2.0.0-beta.2",
"babel-preset-react": "^7.0.0-beta.2",
"del": "^3.0.0",
"devtron": "^1.4.0",
"electron": "^1.8.1",
"electron-builder": "^19.28.4",
"electron-compilers": "^5.9.0",
"gulp": "^3.9.1",
"gulp-ava": "^0.18.0",
"gulp-babel": "^7.0.0",
"gulp-concat": "^2.6.1",
"gulp-if": "^2.0.2",
"gulp-inject": "^4.3.0",
"gulp-sourcemaps": "^2.6.1",
"gulp-uglify": "^3.0.0",
"gulp-xo": "^0.16.0",
"jake": "latest",
"jsdoc": "^3.5.5",
"jsdoc-export-default-interop": "^0.3.1",
"npm-check-updates": "^2.13.0",
"release-it": "^4.4.1",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.0",
"spectron": "^3.7.2",
"xo": "^0.18.2"
},
"ava": {},
"xo": {
"esnext": true,
"envs": [
"node",
"browser"
],
"reporter": "mocha-circleci-reporter",
"ignores": [
"tests/*",
"test.js",
"gulpfile.babel.js",
"app/indexbuild.*",
"docs/scripts/*",
"docs/scripts/prettify/*"
]
},
"build": {
"appId": "com.willyb321.elite-journal",
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"win": {
"target": [
"nsis"
],
"publish": [
"github"
]
}
}
}