This repository was archived by the owner on Jul 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.64 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.64 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
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
106
107
{
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/stoplightio/desktop.git"
},
"author": {
"name": "Stoplight",
"email": "support@stoplight.io"
},
"scripts": {
"start": "NODE_ENV=development electron ./app",
"setup": "rm -R node_modules && yarn",
"postinstall": "electron-builder install-app-deps",
"electron:sign": "codesign --deep --force --verbose --sign - node_modules/electron/dist/Electron.app",
"build:normalize": "node build-normalize",
"build:pre": "node build-pre",
"build:post": "node build-post",
"build": "electron-builder --mac --linux --win",
"release": "electron-builder --mac --linux --win",
"build:production": "NODE_ENV=production yarn build:normalize && yarn build:pre && yarn build && yarn build:post",
"build:staging": "NODE_ENV=staging yarn build:normalize && yarn build:pre && yarn build && yarn build:post",
"release:production": "NODE_ENV=production yarn build:normalize && yarn build:pre && yarn release && yarn build:post",
"release:staging": "NODE_ENV=staging yarn build:normalize && yarn build:pre && yarn release && yarn build:post",
"format": "prettier --write \"**/*.js\""
},
"devDependencies": {
"adm-zip": "0.4.x",
"devtron": "1.4.x",
"electron": "1.8.7",
"electron-builder": "20.5.1",
"fs-extra": "5.x.x",
"prettier": "1.13.3",
"request": "2.x.x"
},
"build": {
"appId": "com.stoplight.app",
"compression": "normal",
"asar": true,
"publish": {
"provider": "github"
},
"extraResources": [
{
"from": "build-tmp/${os}/${arch}",
"to": "app"
}
],
"mac": {
"category": "public.app-category.developer-tools",
"target": [
{
"target": "dmg",
"arch": [
"x64"
]
},
{
"target": "zip",
"arch": [
"x64"
]
}
],
"extendInfo": {
"CFBundleURLTypes": [
{
"CFBundleURLSchemes": [
"stoplight"
],
"CFBundleURLName": "Stoplight Protocol"
}
]
}
},
"linux": {
"category": "Development",
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"ia32"
]
},
{
"target": "deb",
"arch": [
"x64",
"ia32"
]
}
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
}
}
}