-
Notifications
You must be signed in to change notification settings - Fork 261
/
package.json
70 lines (70 loc) · 1.59 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
{
"name": "electron-winstaller",
"version": "0.0.0-development",
"description": "Module to generate Windows installers for Electron apps",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/electron/windows-installer.git"
},
"files": [
"lib",
"resources",
"script",
"template.nuspectemplate",
"vendor",
"!vendor/7z.dll",
"!vendor/7z.exe"
],
"scripts": {
"install": "node ./script/select-7z-arch.js",
"build": "tsc",
"docs": "npx typedoc",
"prepublish": "npm run build",
"lint": "eslint --ext .ts src spec",
"ava": "ava --timeout=60s",
"test": "npm run lint && npm run ava",
"tdd": "ava --watch"
},
"dependencies": {
"@electron/asar": "^3.2.1",
"debug": "^4.1.1",
"fs-extra": "^7.0.1",
"lodash": "^4.17.21",
"semver": "^7.6.3",
"temp": "^0.9.0"
},
"devDependencies": {
"@types/fs-extra": "^5.0.5",
"@types/lodash": "^4.17.0",
"@types/node": "^20.6.0",
"@types/temp": "^0.8.34",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"ava": "^5.1.1",
"eslint": "^8.49.0",
"eslint-plugin-ava": "^14.0.0",
"ts-node": "^10.9.1",
"typedoc": "0.25.13",
"typescript": "^4.9.3"
},
"optionalDependencies": {
"@electron/windows-sign": "^1.1.2"
},
"engines": {
"node": ">=8.0.0"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"spec/*.ts"
],
"require": [
"ts-node/register/transpile-only"
]
}
}