forked from microsoft/TypeScript-DOM-lib-generator
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.12 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "typescript-dom-lib-generator",
"version": "0.0.1",
"private": true,
"description": "Provides TypeScript types for the latest web APIs.",
"keywords": [
"typescript",
"web",
"api",
"dom",
"worker",
"worklet"
],
"scripts": {
"build": "tsc && node ./lib/build.js",
"fetch-comment": "tsc && node ./lib/fetch-comment.js",
"fetch-mdn": "npm run build && node ./lib/fetch-mdn.js",
"fetch": "echo This could take a few minutes... && npm run fetch-comment && npm run fetch-mdn",
"baseline-accept": "cpx \"generated\\*\" baselines\\",
"lint": "eslint --max-warnings 0 src deploy/*.js && tsc -p deploy/jsconfig.json",
"test": "npm run lint && npm run build && node ./lib/test.js && node ./unittests/index.js",
"changelog": "tsc && node ./lib/changelog.js",
"ts-changelog": "node ./deploy/versionChangelog.js",
"migrate": "node ./deploy/migrate.js",
"version": "npm i && tsc && node ./lib/version.js"
},
"author": {
"name": "Kagami Sascha Rosylight",
"email": "[email protected]",
"url": "https://github.com/saschanaz"
},
"contributors": [
"Microsoft Corp."
],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/TypeScript-DOM-lib-generator/"
},
"license": "Apache-2.0",
"type": "module",
"devDependencies": {
"@mdn/browser-compat-data": "^4.0.2",
"@octokit/rest": "^18.10.0",
"@types/jsdom": "^16.2.13",
"@types/node": "^16.7.10",
"@types/node-fetch": "^3.0.2",
"@types/webidl2": "^23.13.6",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"@webref/css": "^2.0.10",
"@webref/elements": "^1.0.2",
"@webref/idl": "^2.3.0",
"bcd-idl-mapper": "^1.2.0",
"cpx2": "^3.0.2",
"danger": "^10.6.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jsdom": "^17.0.0",
"jsonc-parser": "^3.0.0",
"node-fetch": "^3.0.0",
"prettier": "^2.3.2",
"print-diff": "^1.0.0",
"styleless-innertext": "^1.1.3",
"typescript": "^4.4.2",
"webidl2": "^24.1.2"
}
}