This repository has been archived by the owner on Aug 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 1.54 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
{
"name": "lhtml",
"productName": "LHTML",
"version": "0.5.0-post",
"main": "src/main.js",
"description": "LHTML Viewer",
"author": "Matt Haggard <[email protected]>",
"scripts": {
"test": "test/runtests.sh",
"pack": "build --dir",
"dist": "build",
"postinstall": "install-app-deps",
"start": "electron ."
},
"devDependencies": {
"electron": "^1.6.0",
"electron-builder": "^13.6.0",
"electron-packager": "^8.5.0",
"esdoc": "^0.5.2",
"mocha": "^3.2.0"
},
"dependencies": {
"adm-zip": "^0.4.7",
"bluebird": "^3.4.7",
"electron-is": "^2.4.0",
"electron-log": "^1.3.0",
"electron-updater": "^1.6.4",
"fs-extra": "^2.0.0",
"jquery": "^3.2.1",
"klaw": "^1.3.1",
"lodash": "^4.17.4",
"tmp": "0.0.31"
},
"build": {
"appId": "com.github.iffy.lhtml",
"mac": {
"category": "your.app.category.type",
"target": [
"zip",
"dmg"
]
},
"dmg": {
"icon": "build/dmg.icns"
},
"files": [
"!dev${/*}",
"!samples${/*}",
"!demos${/*}",
"!doc${/*}",
"!test${/*}",
"!functest${/*}"
],
"fileAssociations": [
{
"ext": "lhtml",
"role": "Editor",
"icon": "build/lhtmldoc.icns"
}
],
"linux": {
"target": [
"deb",
"tar.gz"
]
},
"nsis": {
"perMachine": true
}
},
"repository": "[email protected]:iffy/lhtml.git",
"license": "Apache-2.0",
"optionalDependencies": {
"fs-xattr": "^0.1.15"
}
}