-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.81 KB
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
{
"name": "@mongodb-js/electron-wix-msi",
"version": "3.0.0",
"description": "Creates an MSI installer for your Electron app",
"license": "MIT",
"repository": "",
"author": {
"name": "Felix Rieseberg",
"email": "felix@felixrieseberg.com",
"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": "jest",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"harness": "npm run build && node ./harness/harness.js"
},
"dependencies": {
"debug": "^3.1.0",
"fs-extra": "^7.0.0",
"klaw": "^3.0.0",
"lodash": "^4.17.10",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/debug": "0.0.30",
"@types/fs-extra": "^5.0.4",
"@types/graceful-fs": "^4.1.2",
"@types/jest": "^20.0.5",
"@types/klaw": "^2.1.1",
"@types/lodash": "^4.14.85",
"@types/mock-fs": "^3.6.30",
"@types/node": "^10.9.4",
"@types/uuid": "^3.4.4",
"coveralls": "^3.0.2",
"jest": "^20.0.4",
"jest-environment-node-debug": "^2.0.0",
"mock-fs": "^5.5.0",
"ts-jest": "^20.0.7",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"engines": {
"node": ">=6.0.0"
},
"jest": {
"transform": {
".(ts)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"testPathIgnorePatterns": [
"\\\\node_modules\\\\",
"__tests__/fixture",
"__tests__/mocks"
],
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node",
"collectCoverage": true,
"mapCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!src/interfaces.ts",
"!src/index.ts"
]
}
}