forked from benjamn/ast-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.59 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
{
"author": "Ben Newman <bn@cs.stanford.edu>",
"name": "ast-types",
"version": "0.15.2",
"description": "Esprima-compatible implementation of the Mozilla JS Parser API",
"keywords": [
"ast",
"abstract syntax tree",
"hierarchy",
"mozilla",
"spidermonkey",
"parser api",
"esprima",
"types",
"type system",
"type checking",
"dynamic types",
"parsing",
"transformation",
"syntax"
],
"homepage": "http://github.com/benjamn/ast-types",
"repository": {
"type": "git",
"url": "git://github.com/benjamn/ast-types.git"
},
"license": "MIT",
"main": "main.js",
"types": "main.d.ts",
"scripts": {
"gen": "ts-node --transpile-only script/gen-types.ts",
"mocha": "test/run.sh",
"test": "npm run gen && npm run build && npm run mocha",
"clean": "ts-emit-clean",
"build": "tsc && ts-add-module-exports",
"prepare": "npm run clean && npm run gen && npm run build",
"postpack": "npm run clean"
},
"dependencies": {
"tslib": "^2.0.1"
},
"devDependencies": {
"@babel/parser": "7.16.4",
"@babel/types": "7.16.0",
"@types/esprima": "4.0.3",
"@types/glob": "7.2.0",
"@types/mocha": "9.0.0",
"@types/node": "16.11.10",
"espree": "9.1.0",
"esprima": "4.0.1",
"esprima-fb": "15001.1001.0-dev-harmony-fb",
"flow-parser": "0.166.0",
"glob": "7.2.0",
"mocha": "^9.1.3",
"recast": "0.20.5",
"reify": "0.20.12",
"ts-add-module-exports": "1.0.0",
"ts-emit-clean": "1.0.0",
"ts-node": "10.4.0",
"typescript": "4.5.2"
},
"engines": {
"node": ">=4"
}
}