-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 826 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 826 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
{
"name": "binast-node",
"version": "0.1.0",
"description": "",
"scripts": {
"build-schema-module": "(cd ./modules/binast-schema/; npm install; npm run build);",
"generate-tsc-schema": "binast-generate-ts-schema ./spec/latest.webidl >./src/typed_schema.ts",
"build-tsc": "tsc",
"build": "npm run build-schema-module; npm install; npm install ./modules/binast-schema; npm run generate-tsc-schema; npm run build-tsc;"
},
"author": "",
"license": "GPLv3",
"bin": {
"binast-analyze-js": "./dist/bin/analyze-js.js"
},
"dependencies": {
"minimist": "^1.2.0",
"shift-parser": ">=5.2.4",
"system-sleep": "^1.3.6",
"typescript": ">=2.8.3",
"webidl2": "^14.0.1"
},
"devDependencies": {
"@types/node": "^10.1.3",
"binast-schema": "file:modules/binast-schema"
}
}