1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "esrecurse",
|
3 |
|
|
"description": "ECMAScript AST recursive visitor",
|
4 |
|
|
"homepage": "https://github.com/estools/esrecurse",
|
5 |
|
|
"main": "esrecurse.js",
|
6 |
|
|
"version": "4.2.1",
|
7 |
|
|
"engines": {
|
8 |
|
|
"node": ">=4.0"
|
9 |
|
|
},
|
10 |
|
|
"maintainers": [
|
11 |
|
|
{
|
12 |
|
|
"name": "Yusuke Suzuki",
|
13 |
|
|
"email": "utatane.tea@gmail.com",
|
14 |
|
|
"web": "https://github.com/Constellation"
|
15 |
|
|
}
|
16 |
|
|
],
|
17 |
|
|
"repository": {
|
18 |
|
|
"type": "git",
|
19 |
|
|
"url": "https://github.com/estools/esrecurse.git"
|
20 |
|
|
},
|
21 |
|
|
"dependencies": {
|
22 |
|
|
"estraverse": "^4.1.0"
|
23 |
|
|
},
|
24 |
|
|
"devDependencies": {
|
25 |
|
|
"babel-cli": "^6.24.1",
|
26 |
|
|
"babel-eslint": "^7.2.3",
|
27 |
|
|
"babel-preset-es2015": "^6.24.1",
|
28 |
|
|
"babel-register": "^6.24.1",
|
29 |
|
|
"chai": "^4.0.2",
|
30 |
|
|
"esprima": "^4.0.0",
|
31 |
|
|
"gulp": "^3.9.0",
|
32 |
|
|
"gulp-bump": "^2.7.0",
|
33 |
|
|
"gulp-eslint": "^4.0.0",
|
34 |
|
|
"gulp-filter": "^5.0.0",
|
35 |
|
|
"gulp-git": "^2.4.1",
|
36 |
|
|
"gulp-mocha": "^4.3.1",
|
37 |
|
|
"gulp-tag-version": "^1.2.1",
|
38 |
|
|
"jsdoc": "^3.3.0-alpha10",
|
39 |
|
|
"minimist": "^1.1.0"
|
40 |
|
|
},
|
41 |
|
|
"license": "BSD-2-Clause",
|
42 |
|
|
"scripts": {
|
43 |
|
|
"test": "gulp travis",
|
44 |
|
|
"unit-test": "gulp test",
|
45 |
|
|
"lint": "gulp lint"
|
46 |
|
|
},
|
47 |
|
|
"babel": {
|
48 |
|
|
"presets": [
|
49 |
|
|
"es2015"
|
50 |
|
|
]
|
51 |
|
|
}
|
52 |
|
|
}
|