-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.67 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
{
"name": "tsc4wsh",
"version": "1.6.4",
"main": "./lib/main.js",
"engines": {
"node": ">=10.17.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sugoroku-y/tsc4wsh.git"
},
"scripts": {
"test": "jest",
"pretest:wsh": "node lib/main.js test/wshtest.ts polyfill/**/*.test.ts private-modules/**/*.test.ts test/**/*.test.ts -o test/wshtest.wsf",
"test:wsh": "cscript //nologo test/wshtest.wsf",
"pretest": "npm run build:polyfill",
"build:polyfill": "tsc --build polyfill/ts/tsconfig.json",
"build:src": "tsc --build src/tsconfig.json",
"build": "run-s build:polyfill build:src",
"prepare": "npm run build",
"watch:polyfill": "tsc --build polyfill/ts/tsconfig.json --watch",
"watch:src": "tsc --build src/tsconfig.json --watch",
"watch": "run-p watch:polyfill watch:src"
},
"author": {
"name": "YEBISUYA Sugoroku",
"email": "yebisuya@gmail.com"
},
"license": "MIT",
"dependencies": {
"@types/activex-adodb": "^6.1.8",
"@types/activex-scripting": "^1.0.8",
"@types/activex-shell": "^1.0.4",
"@types/windows-script-host": "^5.8.3",
"@xmldom/xmldom": "^0.8.6",
"optionalist": "^1.0.5",
"typescript": "^4.9.5",
"wildkarte": "^1.1.0",
"xpath": "^0.0.27"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^10.17.60",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^24.7.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"ts-jest": "^26.5.6"
},
"bin": {
"tsc4wsh": "bin/tsc4wsh.js"
}
}