mirror of
https://github.com/Hopiu/annotate-esprima.git
synced 2026-03-17 00:10:23 +00:00
38 lines
936 B
JSON
Executable file
38 lines
936 B
JSON
Executable file
{
|
|
"name": "estraverse",
|
|
"description": "ECMAScript JS AST traversal functions",
|
|
"homepage": "https://github.com/Constellation/estraverse",
|
|
"main": "estraverse.js",
|
|
"version": "1.5.1-dev",
|
|
"engines": {
|
|
"node": ">=0.4.0"
|
|
},
|
|
"maintainers": [
|
|
{
|
|
"name": "Yusuke Suzuki",
|
|
"email": "utatane.tea@gmail.com",
|
|
"web": "http://github.com/Constellation"
|
|
}
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://github.com/Constellation/estraverse.git"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "~1.12.0",
|
|
"chai": "~1.7.2",
|
|
"jshint": "2.1.5",
|
|
"coffee-script": "~1.6.3"
|
|
},
|
|
"licenses": [
|
|
{
|
|
"type": "BSD",
|
|
"url": "http://github.com/Constellation/estraverse/raw/master/LICENSE.BSD"
|
|
}
|
|
],
|
|
"scripts": {
|
|
"test": "npm run-script lint && npm run-script unit-test",
|
|
"lint": "jshint estraverse.js",
|
|
"unit-test": "mocha --compilers coffee:coffee-script"
|
|
}
|
|
}
|