-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "edcarnage",
"version": "1.0.1",
"description": "EDCarnage, a tool for stacking massacre missions in Elite Dangerous",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "electron .",
"dist": "electron-builder && tar -a -C dist\\win-unpacked -c -f dist\\EDCarnage-%npm_package_version%.zip *",
"preversion": "npm test",
"version": "git add package.json",
"postversion": "git push && git push --tags && npm run dist && node publish-packages.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmomtchev/EDCarnage.git"
},
"keywords": [
"Elite",
"Dangerous",
"massacre"
],
"author": "Momtchil Momtchev <momtchil@momtchev.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/mmomtchev/EDCarnage/issues"
},
"homepage": "https://github.com/mmomtchev/EDCarnage#readme",
"build": {
"appId": "mmomtchev.EDCarnage",
"files": [
"index.js",
"index.html",
"carnage.css",
"src/*",
"font/*",
"handlebars/*",
"node_modules/bootstrap/dist/css/bootstrap.css",
"node_modules/jquery/dist/jquery.min.js"
]
},
"devDependencies": {
"@octokit/rest": "^18.12.0",
"chai": "^4.3.4",
"electron": "^22.3.25",
"electron-builder": "^22.14.5",
"mocha": "^9.2.0"
},
"dependencies": {
"bootstrap": "^5.1.3",
"handlebars": "^4.7.7",
"jquery": "^3.6.0"
}
}