forked from microsoft/TypeScript-DOM-lib-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 652 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 652 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "tsjs-lib-generator",
"private": true,
"scripts": {
"build": "tsc --p ./tsconfig.json && node ./lib/index.js",
"fetch": "tsc --p ./tsconfig.json && node ./lib/fetcher.js",
"baseline-accept": "cpx \"generated\\*\" baselines\\",
"test": "tsc --p ./tsconfig.json && node ./lib/index.js && node ./lib/test.js"
},
"dependencies": {
"@types/jsdom": "^11.0.4",
"@types/node": "^9.4.6",
"@types/node-fetch": "^1.6.7",
"@types/webidl2": "^10.2.1",
"cpx": "^1.5.0",
"jsdom": "^11.11.0",
"node-fetch": "^2.1.1",
"print-diff": "^0.1.1",
"typescript": "^2.9.2",
"webidl2": "^13.0.2"
}
}