forked from MarcelRaschke/windows-build-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.73 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
{
"name": "windows-build-tools",
"version": "5.3.0",
"description": "Install C++ Build Tools for Windows using npm",
"main": "dist/index.js",
"scripts": {
"test": "npm run lint && npm run unit",
"unit": "jest",
"postinstall": "node ./dist/index.js",
"build": "tsc -p tsconfig.json",
"prepare": "npm run build",
"start": "npm run build && npm run postinstall",
"lint": "tslint -c tslint.json -p tsconfig.json \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/felixrieseberg/windows-build-tools.git"
},
"os": [
"win32"
],
"keywords": [
"Windows",
"Build Tools",
"node-gyp",
"native",
"c++"
],
"engines": {
"node": ">=8.0.0"
},
"author": "Felix Rieseberg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/felixrieseberg/windows-build-tools/issues"
},
"homepage": "https://github.com/felixrieseberg/windows-build-tools#readme",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^8.1.1",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.8",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^6.1.3",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^4.3.4"
},
"dependencies": {
"chalk": "^2.4.2",
"debug": "^4.3.1",
"fs-extra": "^8.1.0",
"in-gfw": "^1.2.0",
"nugget": "^2.0.1",
"string-width": "^4.2.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/**/*-test.+(ts|tsx|js)"
]
}
}