forked from rockybars/atom-shell-packager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.55 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "electron-packager",
"version": "14.2.1",
"description": "Customize and package your Electron app with OS-specific bundles (.app, .exe, etc.) via JS or CLI",
"main": "src/index.js",
"types": "src/index.d.ts",
"bin": {
"electron-packager": "bin/electron-packager.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron/electron-packager.git"
},
"author": "Mark Lee",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/electron/electron-packager/issues"
},
"homepage": "https://github.com/electron/electron-packager",
"files": [
"collaborators.md",
"bin",
"docs/*.md",
"NEWS.md",
"src",
"src/index.d.ts",
"usage.txt"
],
"dependencies": {
"@electron/get": "^1.6.0",
"asar": "^3.0.0",
"debug": "^4.0.1",
"electron-notarize": "^0.3.0",
"electron-osx-sign": "^0.4.11",
"extract-zip": "^2.0.0",
"fs-extra": "^9.0.0",
"galactus": "^0.2.1",
"get-package-info": "^1.0.0",
"junk": "^3.1.0",
"parse-author": "^2.0.0",
"plist": "^3.0.0",
"rcedit": "^2.0.0",
"resolve": "^1.1.6",
"sanitize-filename": "^1.6.0",
"semver": "^7.1.3",
"yargs-parser": "^18.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"ava": "^3.3.0",
"buffer-equal": "^1.0.0",
"codecov": "^3.0.0",
"eslint": "^6.0.0",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-ava": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"nyc": "^15.0.0",
"pkg-up": "^3.0.1",
"sinon": "^9.0.0",
"tsd": "^0.11.0",
"typedoc": "^0.17.1",
"typescript": "^3.7.5"
},
"engines": {
"node": ">= 10.12.0"
},
"scripts": {
"ava": "ava test/index.js",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"coverage": "nyc npm run ava",
"docs:build": "node test/ci/build_docs.js",
"lint": "npm run lint:js && npm run lint:ts",
"lint:js": "eslint .",
"lint:ts": "eslint --config .eslintrc.typescript.js --ext .ts .",
"test": "npm run lint && npm run tsd && npm run coverage",
"tsd": "tsd"
},
"directories": {
"test": "test"
},
"keywords": [
"electron",
"packager",
"bundler",
"app"
],
"ava": {
"timeout": "60s"
},
"tsd": {
"directory": "test"
},
"funding": {
"url": "https://github.com/electron/electron-packager?sponsor=1"
}
}