This repository has been archived by the owner on Dec 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
105 lines (105 loc) · 2.64 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
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "SkelEktron",
"description": "Unofficial Electron Template Application",
"version": "0.0.6",
"author": {
"name": "Vito Tardia / BZ Coding",
"email": "[email protected]",
"url": "https://bzcoding.com/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BZCoding/SkelEktron.git"
},
"main": "main.js",
"scripts": {
"test": "standard && mocha --recursive",
"unit": "standard && mocha test/unit --recursive",
"integration": "standard && mocha test/integration --recursive",
"coverage": "istanbul cover node_modules/.bin/_mocha -- --recursive",
"depcheck": "dependency-check app --entry main.js --unused --no-dev",
"lint": "standard",
"start": "electron ./app/main",
"clean:linux": "rimraf dist/linux* dist/*.deb dist/*.AppImage",
"clean:osx": "rimraf dist/mac",
"clean:win": "rimraf dist/win*",
"clean": "npm run clean:linux && npm run clean:win && npm run clean:osx",
"pack:osx": "build --dir --mac",
"pack:win": "build --dir --win --x64",
"pack:linux": "build --dir --linux --x64",
"pack": "build --dir",
"prebuild": "node build/target.js",
"build:osx": "npm run prebuild && build --mac && npm run postbuild",
"build:win": "npm run prebuild && build --win --x64 && npm run postbuild",
"build:linux": "npm run prebuild && build --linux deb AppImage --x64 && npm run postbuild",
"build": "build",
"postbuild": "node build/target.js --clean",
"postinstall": "install-app-deps"
},
"standard": {
"globals": [
"describe",
"after",
"it",
"before",
"beforeEach",
"afterEach",
"rm",
"cp"
]
},
"pre-commit": [
"lint",
"unit"
],
"keywords": [
"electron-app",
"electron",
"boilerplate"
],
"build": {
"appId": "com.bzcoding.skelektron",
"productName": "SkelEktron",
"dmg": {
"iconSize": 120,
"iconTextSize": 14,
"contents": [
{
"x": 478,
"y": 170,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 170,
"type": "file"
}
]
},
"mac": {
"category": "public.app-category.business"
},
"linux": {
"category": "Development"
},
"win": {
}
},
"devDependencies": {
"async": "^2",
"chai": "^3",
"chai-as-promised": "^6",
"dependency-check": "^2",
"electron-builder": "^7",
"electron-prebuilt": "^1",
"istanbul": "^0.4",
"mocha": "^3",
"pre-commit": "^1",
"rimraf": "^2",
"shelljs": "^0.7",
"spectron": "^3",
"standard": "^8"
}
}