-
Notifications
You must be signed in to change notification settings - Fork 5
/
old_package_json_app_store_friendly
121 lines (121 loc) · 2.91 KB
/
old_package_json_app_store_friendly
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "ove-electron",
"version": "1.4.3",
"description": "An open source vector or plasmid editor",
"main": "main.js",
"scripts": {
"start": "electron . ./pA11990.gb",
"test": "mocha",
"build": "env-cmd electron-builder -wml --publish never",
"build-win": "env-cmd electron-builder --win --publish never",
"build-mac": "env-cmd electron-builder --mac --publish never",
"deploy": "env-cmd electron-builder --mac --linux --publish always",
"deploy-win": "electron-builder --win --publish always",
"deploy-mac": "env-cmd electron-builder --mac --publish always",
"deploy-linux": "env-cmd electron-builder --linux --publish always",
"generateChangelog": "auto-changelog -p && git add . && git commit -m 'Updating CHANGELOG' && git push"
},
"build": {
"appx": {
"identityName": "56560Teselagen.OpenVectorEditor",
"publisher": "CN=D373F92F-3481-433F-9DC5-0BE55DE5500D",
"publisherDisplayName": "Teselagen",
"applicationId": "OpenVectorEditor",
"displayName": "OpenVectorEditor"
},
"win": {
"target": "appx"
},
"productName": "OpenVectorEditor",
"publish": {
"provider": "github",
"repo": "ove-electron",
"owner": "tnrich"
},
"afterSign": "src/misc/notarize.js",
"mac": {
"hardenedRuntime": true,
"gatekeeperAssess": false,
"target": {
"target": "default",
"arch": [
"x64",
"arm64"
]
},
"entitlements": "src/misc/entitlements.mac.plist",
"entitlementsInherit": "src/misc/entitlements.mac.plist"
},
"appId": "com.teselagen.openVectorEditor",
"fileAssociations": [
{
"ext": "json"
},
{
"ext": "gb"
},
{
"ext": "dna"
},
{
"ext": "gbk"
},
{
"ext": "gp"
},
{
"ext": "fas"
},
{
"ext": "fasta"
},
{
"ext": "fa"
},
{
"ext": "fna"
},
{
"ext": "ffn"
},
{
"ext": "gff"
},
{
"ext": "gff3"
}
]
},
"repository": "https://github.com/electron/ove-electron",
"keywords": [
"Electron",
"open-vector-editor",
"plasmid",
"editor",
"dna",
"ove"
],
"author": "tnrich",
"license": "MIT",
"devDependencies": {
"auto-changelog": "^2.4.0",
"electron": "^21.1.0",
"electron-builder": "^23.6.0",
"electron-notarize": "^1.2.1",
"env-cmd": "^10.1.0",
"eslint": "^8.24.0",
"eslint-config-teselagen": "^6.0.6",
"mocha": "^10.0.0",
"spectron": "^19.0.0"
},
"dependencies": {
"bio-parsers": "^8.3.32",
"electron-updater": "^5.3.0",
"electron-window-state": "^5.0.3",
"open-vector-editor": "^18.1.37",
"ove-auto-annotate": "^0.0.5",
"querystring": "^0.2.1",
"ve-range-utils": "^2.6.6",
"ve-sequence-utils": "^5.1.38"
}
}