-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
58 lines (58 loc) · 1.32 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
{
"name": "escope",
"description": "ECMAScript scope analyzer",
"homepage": "http://github.com/estools/escope",
"main": "lib/index.js",
"files": [
"lib"
],
"version": "4.0.0",
"engines": {
"node": ">=4.0"
},
"maintainers": [
{
"name": "Yusuke Suzuki",
"email": "[email protected]",
"web": "http://github.com/Constellation"
}
],
"repository": {
"type": "git",
"url": "https://github.com/estools/escope.git"
},
"dependencies": {
"esrecurse": "^4.1.0",
"estraverse": "^4.1.1"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"browserify": "^14.4.0",
"chai": "^4.0.2",
"espree": "^3.1.1",
"esprima": "^3.0.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-bump": "^2.7.0",
"gulp-eslint": "^4.0.0",
"gulp-espower": "^1.0.2",
"gulp-filter": "^5.0.0",
"gulp-git": "^2.4.1",
"gulp-mocha": "^3.0.0",
"gulp-plumber": "^1.0.1",
"gulp-sourcemaps": "^2.6.0",
"gulp-tag-version": "^1.3.0",
"jsdoc": "^3.4.0",
"lazypipe": "^1.0.1",
"vinyl-source-stream": "^1.1.0"
},
"license": "BSD-2-Clause",
"scripts": {
"test": "gulp travis",
"unit-test": "gulp test",
"lint": "gulp lint",
"jsdoc": "jsdoc src/*.js README.md"
}
}