-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "webidl2ts",
"version": "1.0.4",
"description": "Converts Web IDL to Typescript (.d.ts)",
"main": "dist/index.js",
"scripts": {
"build": "tsc && chmod 755 dist/cli.js",
"lint": "tsc --noEmit",
"start": "yarn build && ./dist/cli.js",
"format": "yarn prettier --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/giniedp/webidl2ts.git"
},
"homepage": "https://github.com/giniedp/webidl2ts",
"author": "Alexander Gräfenstein",
"license": "MIT",
"files": [
"dist",
"Readme.md",
"package.json",
"LICENSE.md"
],
"devDependencies": {
"@types/node": "^14.14.6",
"@types/webidl2": "^23.13.5",
"@types/yargs": "^15.0.9",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"prettier": "^2.1.2",
"ts-node": "^9.0.0"
},
"dependencies": {
"jsdom": "^16.4.0",
"typescript": "^4.0.5",
"webidl2": "^23.13.0",
"yargs": "^16.1.0"
},
"bin": {
"webidl2ts": "./dist/cli.js"
}
}