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
29 lines (29 loc) · 990 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 990 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
26
27
28
29
{
"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",
"danger": "danger",
"migrate": "node ./lib/migrate-to-tsc.js"
},
"dependencies": {
"@types/jsdom": "^16.2.4",
"@types/node": "^14.6.4",
"@types/node-fetch": "^2.5.7",
"@types/webidl2": "^23.13.2",
"cpx2": "^2.0.0",
"danger": "^10.5.4",
"jsdom": "^16.4.0",
"node-fetch": "^2.6.1",
"parse-diff": "^0.7.0",
"print-diff": "^1.0.0",
"styleless-innertext": "^1.1.2",
"typescript": "4.1.0-dev.20200908",
"webidl2": "^23.13.0"
}
}