forked from electron/asar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 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
{
"main": "./lib/asar.js",
"name": "asar",
"description": "Creating Electron app packages",
"version": "0.0.0-development",
"bin": {
"asar": "./bin/asar.js"
},
"engines": {
"node": ">=8.0"
},
"license": "MIT",
"homepage": "https://github.com/electron/asar",
"repository": {
"type": "git",
"url": "https://github.com/electron/asar.git"
},
"bugs": {
"url": "https://github.com/electron/asar/issues"
},
"scripts": {
"test": "xvfb-maybe electron-mocha --reporter spec && mocha --reporter spec && npm run lint",
"lint": "standard"
},
"standard": {
"env": {
"mocha": true
}
},
"dependencies": {
"chromium-pickle-js": "^0.2.0",
"commander": "^2.20.0",
"cuint": "^0.2.2",
"glob": "^7.1.3",
"minimatch": "^3.0.4",
"mkdirp": "^0.5.1",
"tmp-promise": "^1.0.5"
},
"devDependencies": {
"@continuous-auth/semantic-release-npm": "^1.0.3",
"@semantic-release/changelog": "^3.0.2",
"electron": "^5.0.0",
"electron-mocha": "^8.0.1",
"lodash": "^4.17.11",
"mocha": "^6.1.4",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.3",
"standard": "^12.0.1",
"xvfb-maybe": "^0.2.1"
}
}