forked from benjamn/recast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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
{
"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.11.0",
"homepage": "http://github.com/benjamn/recast",
"repository": {
"type": "git",
"url": "git://github.com/benjamn/recast.git"
},
"license": "MIT",
"main": "main.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha --reporter spec --full-trace",
"debug": "node ./node_modules/mocha/bin/mocha --debug-brk --reporter spec"
},
"browser": {
"fs": false
},
"dependencies": {
"ast-types": "codemix/ast-types",
"esprima": "~2.7.1",
"private": "~0.1.5",
"source-map": "~0.5.0"
},
"devDependencies": {
"babylon": "~6.4.2",
"esprima-fb": "^15001.1001.0-dev-harmony-fb",
"mocha": "~2.2.5"
},
"engines": {
"node": ">= 0.8"
}
}