This repository has been archived by the owner on Oct 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
102 lines (102 loc) · 2.85 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
{
"name": "Firetext",
"description": "Cross-Platform port of Firetext",
"version": "0.0.1",
"license": "MIT",
"author": {
"name": "Codexa",
"email": "example@example.com",
"url": "https://github.com/codexa"
},
"repository": {
"type": "git",
"url": "https://github.com/codexa/firetext"
},
"main": "electronApp/main.js",
"scripts": {
"depcheck": "dependency-check app --entry electronApp/main.js --unused --no-dev",
"lint": "standard",
"start": "electron ./electronApp/main",
"clean:linux": "rimraf dist/linux",
"clean:osx": "rimraf dist/darwin-x64",
"clean:win": "rimraf dist/win",
"clean": "npm run clean:linux && npm run clean:win && npm run clean:osx",
"pack:osx": "build --platform=darwin",
"pack:win": "npm run pack:win64 && npm run pack:win32",
"pack:win32": "build --platform=win32 --arch=ia32",
"pack:win64": "build --platform=win32 --arch=x64",
"pack:linux": "npm run pack:lin64 && npm run pack:lin32",
"pack:lin32": "build --platform=linux --arch=ia32",
"pack:lin64": "build --platform=linux --arch=x64",
"pack": "build --platform=all --arch=x64,ia32",
"prebuild": "node build/target.js",
"postbuild": "node build/target.js --clean",
"prebuild:osx": "npm run prebuild",
"postbuild:osx": "npm run postbuild",
"build:osx": "build --platform=darwin -d",
"build:win": "npm run build:win64 && npm run build:win32",
"build:win32": "build --platform=win32 --arch=ia32 -d",
"build:win64": "build --platform=win32 --arch=x64 -d",
"build:linux": "npm run build:lin64 && npm run build:lin32 -d",
"build:lin32": "build --platform=linux --arch=ia32 -d",
"build:lin64": "build --platform=linux --arch=x64 -d",
"build": "build --platform=all --arch=x64,ia32 -d",
"postinstall": "install-app-deps"
},
"standard": {
"globals": [
"describe",
"after",
"it",
"before",
"beforeEach",
"afterEach",
"rm",
"cp"
]
},
"keywords": [
"electron-app",
"electron"
],
"build": {
"app-bundle-id": "skelektron",
"app-category-type": "public.app-category.business",
"osx": {
"title": "SkelEktron",
"icon-size": 120,
"contents": [
{
"x": 478,
"y": 170,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 170,
"type": "file"
}
]
},
"win": {
"msi": false
}
},
"devDependencies": {
"async": "^1.5",
"dependency-check": "^2.5",
"electron-builder": "^3",
"electron-debug": "^1.4.0",
"electron-is-dev": "^0.1.2",
"electron-prebuilt": "^1",
"eslint": "^3.3.1",
"eslint-config-idiomatic": "^2.1.0",
"shelljs": "^0.7",
"standard": "^7",
"lodash": "^4"
},
"dependencies": {
"electron-store": "^1.3.0"
}
}