forked from rockybars/atom-shell-packager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.82 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
{
"name": "electron-packager",
"version": "8.5.0",
"description": "Package and distribute your Electron app with OS-specific bundles (.app, .exe etc) via JS or CLI",
"main": "index.js",
"bin": {
"electron-packager": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron-userland/electron-packager.git"
},
"author": "max ogden",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/electron-userland/electron-packager/issues"
},
"homepage": "https://github.com/electron-userland/electron-packager",
"dependencies": {
"asar": "^0.12.3",
"debug": "^2.2.0",
"electron-download": "^3.0.0",
"electron-osx-sign": "^0.4.1",
"extract-zip": "^1.0.3",
"fs-extra": "^1.0.0",
"get-package-info": "^1.0.0",
"minimist": "^1.1.1",
"plist": "^2.0.0",
"rcedit": "^0.7.0",
"resolve": "^1.1.6",
"run-series": "^1.1.1",
"sanitize-filename": "^1.6.0",
"semver": "^5.3.0"
},
"devDependencies": {
"buffer-equal": "^1.0.0",
"coveralls": "^2.11.6",
"eslint": "^3.2.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.0",
"is-admin": "^2.0.0",
"nyc": "^10.0.0",
"pkg-up": "^1.0.0",
"rcinfo": "^0.1.3",
"rimraf": "^2.3.2",
"run-waterfall": "^1.1.1",
"tape": "^4.0.0"
},
"engines": {
"node": ">= 4.0"
},
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"pretest": "rimraf test/work",
"test": "npm run lint && nyc tape test"
},
"directories": {
"test": "test"
},
"keywords": [],
"eslintConfig": {
"extends": "standard",
"parserOptions": {
"sourceType": "script"
},
"rules": {
"strict": [
"error"
]
}
}
}