forked from benjamn/recast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.58 KB
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
{
"author": "Ben Newman <bn@cs.stanford.edu>",
"name": "recast",
"version": "0.17.2",
"description": "JavaScript syntax tree transformer, nondestructive pretty-printer, and automatic source map generator",
"keywords": [
"ast",
"rewriting",
"refactoring",
"codegen",
"syntax",
"transformation",
"parsing",
"pretty-printing"
],
"homepage": "http://github.com/benjamn/recast",
"repository": {
"type": "git",
"url": "git://github.com/benjamn/recast.git"
},
"license": "MIT",
"main": "main.js",
"types": "main.d.ts",
"scripts": {
"tsc": "tsc --noEmit",
"mocha": "test/run.sh",
"debug": "test/run.sh --inspect-brk",
"test": "npm run tsc && npm run mocha",
"build": "tsc && ts-add-module-exports",
"clean": "ts-emit-clean",
"prepack": "npm run clean && npm run build",
"postpack": "npm run clean"
},
"browser": {
"fs": false
},
"dependencies": {
"ast-types": "0.12.1",
"esprima": "~4.0.0",
"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",
"@types/esprima": "^4.0.2",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.9",
"esprima-fb": "^15001.1001.0-dev-harmony-fb",
"flow-parser": "^0.83.0",
"glob": "^7.1.2",
"mocha": "~5.2.0",
"reify": "^0.18.0",
"ts-add-module-exports": "^1.0.0",
"ts-emit-clean": "^1.0.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.6"
},
"engines": {
"node": ">= 4"
}
}