-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 986 Bytes
/
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
{
"name": "BagIt-Utility",
"version": "0.2.1",
"description": "A proof-of-concept bag creator",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "build --dir",
"dist": "build --linux --windows --mac --x64 --ia32",
"release": "build --linux --windows --mac --x64 --ia32 --publish always"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [],
"author": "Brian Wheeler <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"electron": "~1.6.2",
"electron-builder": "^18.0.1"
},
"dependencies": {
"digest-stream": "^2.0.0",
"es6-promise-pool": "^2.4.4",
"md5-file": "^3.1.1",
"tar-stream": "^1.5.4"
},
"build": {
"appId": "edu.indiana.dlib.BagIt",
"mac": {
"target": [
"zip"
]
},
"linux": {
"target": [
"tar.gz"
]
},
"win": {
"target": [
"nsis",
"zip"
]
}
}
}