forked from electron-userland/electron-wix-msi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.02 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
{
"name": "electron-wix-msi",
"version": "5.0.0",
"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": {
"prepublish": "npm run build",
"build": "tsc --pretty",
"test": "npm run lint && jest",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"harness": "npm run build && node ./harness/harness.js"
},
"dependencies": {
"debug": "^4.3.4",
"fs-extra": "^10.0.1",
"klaw": "^4.0.1",
"lodash": "^4.17.21",
"rcedit": "^3.0.1",
"rcinfo": "^0.1.3",
"semver": "^7.3.5",
"uuid": "^8.3.2"
},
"optionalDependencies": {
"@bitdisaster/exe-icon-extractor": "^1.0.10"
},
"devDependencies": {
"@types/debug": "4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/graceful-fs": "^4.1.5",
"@types/jest": "^27.4.1",
"@types/klaw": "^3.0.3",
"@types/lodash": "^4.14.181",
"@types/mock-fs": "^4.13.1",
"@types/node": "^14.18.12",
"@types/semver": "^7.3.9",
"@types/uuid": "^8.3.4",
"coveralls": "^3.1.1",
"jest": "^27.5.1",
"jest-environment-node-debug": "^2.0.0",
"mock-fs": "^5.1.2",
"ts-jest": "^27.1.4",
"tslint": "^6.1.3",
"typescript": "^4.6.3"
},
"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"
]
}
}