forked from benjamn/recast
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.11 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
{
"author": "Ben Newman <[email protected]>",
"name": "recast",
"description": "JavaScript syntax tree transformer, nondestructive pretty-printer, and automatic source map generator",
"keywords": [
"ast",
"rewriting",
"refactoring",
"codegen",
"syntax",
"transformation",
"parsing",
"pretty-printing"
],
"version": "0.15.3",
"homepage": "http://github.com/benjamn/recast",
"repository": {
"type": "git",
"url": "git://github.com/benjamn/recast.git"
},
"license": "MIT",
"main": "main.js",
"scripts": {
"test": "test/run.sh",
"debug": "test/run.sh --inspect-brk"
},
"browser": {
"fs": false
},
"dependencies": {
"ast-types": "0.11.5",
"esprima": "~4.0.0",
"private": "~0.1.5",
"source-map": "~0.6.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.54",
"@babel/parser": "^7.0.0-beta.54",
"@babel/preset-env": "^7.0.0-beta.54",
"esprima-fb": "^15001.1001.0-dev-harmony-fb",
"flow-parser": "^0.76.0",
"glob": "^7.1.2",
"mocha": "~5.2.0",
"reify": "^0.16.4"
},
"engines": {
"node": ">= 4"
}
}