forked from estools/escope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.5 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "escope",
"description": "ECMAScript scope analyzer",
"homepage": "http://github.com/estools/escope.html",
"main": "lib/index.js",
"version": "3.0.1",
"engines": {
"node": ">=0.4.0"
},
"maintainers": [
{
"name": "Yusuke Suzuki",
"email": "[email protected]",
"web": "http://github.com/Constellation"
}
],
"repository": {
"type": "git",
"url": "http://github.com/estools/escope.git"
},
"dependencies": {
"es6-map": "^0.1.1",
"es6-weak-map": "^0.1.2",
"esrecurse": "^3.1.1",
"estraverse": "^3.1.0"
},
"devDependencies": {
"acorn": "^0.12.0",
"babel": "^4.7.12",
"browserify": "^9.0.3",
"chai": "^2.1.1",
"coffee-script": "^1.9.1",
"espree": "^1.11.0",
"esprima": "^2.1.0",
"gulp": "~3.8.10",
"gulp-babel": "^4.0.0",
"gulp-bump": "^0.3.0",
"gulp-coffee": "^2.2.0",
"gulp-eslint": "^0.6.0",
"gulp-espower": "^0.10.0",
"gulp-filter": "^2.0.0",
"gulp-git": "^1.0.1",
"gulp-mocha": "~2.0.0",
"gulp-plumber": "^1.0.0",
"gulp-sourcemaps": "^1.3.0",
"gulp-tag-version": "^1.2.1",
"jsdoc": "=3.3.0-alpha13",
"lazypipe": "^0.2.2",
"minimist": "^1.1.0",
"vinyl-source-stream": "^1.0.0"
},
"licenses": [
{
"type": "BSD",
"url": "http://github.com/estools/escope/raw/master/LICENSE.BSD"
}
],
"scripts": {
"test": "gulp travis",
"unit-test": "gulp test",
"lint": "gulp lint",
"jsdoc": "jsdoc src/*.js README.md"
}
}