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
25 lines (25 loc) · 853 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 853 Bytes
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
{
"name": "tsjs-lib-generator",
"private": true,
"scripts": {
"build": "tsc --p ./tsconfig.json && node ./lib/index.js",
"fetch-idl": "tsc --p ./tsconfig.json && node ./lib/idlfetcher.js",
"fetch-mdn": "npm run build && node ./lib/mdnfetcher.js",
"fetch": "echo This could take a few minutes... && npm run fetch-idl && npm run fetch-mdn",
"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.6.49",
"@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",
"styleless-innertext": "^1.1.2",
"typescript": "next",
"webidl2": "^13.0.2"
}
}