forked from microsoft/TypeScript-DOM-lib-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 855 Bytes
/
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
{
"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.12.0",
"@types/node": "^9.6.52",
"@types/node-fetch": "^1.6.9",
"@types/webidl2": "^23.8.0",
"cpx2": "^2.0.0",
"jsdom": "^11.12.0",
"node-fetch": "^2.6.0",
"print-diff": "^0.1.1",
"styleless-innertext": "^1.1.2",
"typescript": "next",
"webidl2": "^23.8.1"
}
}