-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
86 lines (86 loc) · 2.16 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
{
"name": "electron-wix-msi",
"version": "5.1.3",
"description": "Creates an MSI installer for your Electron app",
"license": "MIT",
"repository": "https://github.com/felixrieseberg/electron-wix-msi",
"author": {
"name": "Felix Rieseberg",
"email": "[email protected]",
"url": "https://www.felixrieseberg.com"
},
"keywords": [
"wix",
"msi"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc --pretty",
"test": "npm run lint && jest",
"lint": "eslint .",
"harness": "npm run build && node ./harness/harness.js",
"prettier": "npx prettier --write \"**/*.ts\""
},
"dependencies": {
"@electron/windows-sign": "^1.1.2",
"debug": "^4.3.4",
"fs-extra": "^10.1.0",
"klaw": "^4.1.0",
"lodash": "^4.17.21",
"rcedit": "^4.0.1",
"rcinfo": "^0.1.3",
"semver": "^7.6.0"
},
"optionalDependencies": {
"@bitdisaster/exe-icon-extractor": "^1.0.10"
},
"devDependencies": {
"@types/debug": "4.1.12",
"@types/fs-extra": "^9.0.13",
"@types/graceful-fs": "^4.1.9",
"@types/jest": "^29.5.12",
"@types/klaw": "^3.0.6",
"@types/lodash": "^4.14.202",
"@types/mock-fs": "^4.13.4",
"@types/node": "^14.18.63",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-environment-node-debug": "^2.0.0",
"mock-fs": "^5.2.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"typescript-eslint": "^7.1.1"
},
"engines": {
"node": ">=14.0.0"
},
"jest": {
"transform": {
".(ts)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"testPathIgnorePatterns": [
"\\\\node_modules\\\\",
"__tests__/fixture",
"__tests__/mocks",
"__tests__/test-utils"
],
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!src/interfaces.ts",
"!src/index.ts"
]
}
}