forked from rockybars/atom-shell-packager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 3.22 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "electron-packager",
"version": "15.2.0",
"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",
"usage.txt"
],
"dependencies": {
"@electron/get": "^1.6.0",
"asar": "^3.0.0",
"debug": "^4.0.1",
"electron-notarize": "^1.0.0",
"electron-osx-sign": "^0.5.0",
"extract-zip": "^2.0.0",
"filenamify": "^4.1.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",
"semver": "^7.1.3",
"yargs-parser": "^20.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"ava": "^3.10.1",
"buffer-equal": "^1.0.0",
"codecov": "^3.0.0",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-ava": "^11.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.0.1",
"nyc": "^15.0.0",
"pkg-up": "^3.0.1",
"sinon": "^9.0.0",
"tsd": "^0.14.0",
"typedoc": "^0.19.0",
"typescript": "^4.0.2"
},
"engines": {
"node": ">= 10.12.0"
},
"scripts": {
"ava": "ava test/index.js",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"coverage": "nyc ava test/index.js",
"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"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:ava/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:promise/recommended",
"standard"
],
"parserOptions": {
"sourceType": "script"
},
"plugins": [
"ava"
],
"rules": {
"ava/no-import-test-files": 0,
"ava/no-ignored-test-files": 0,
"indent": [
"error",
2,
{
"CallExpression": {
"arguments": "first"
},
"SwitchCase": 1
}
],
"no-console": 0,
"strict": "error"
}
},
"eslintIgnore": [
"typedoc/**/*",
"**/test/fixtures/**/node_modules/**",
"**/test/work/*"
],
"tsd": {
"directory": "test"
},
"funding": {
"url": "https://github.com/electron/electron-packager?sponsor=1"
}
}