-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.46 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": "shift-traverse",
"version": "1.0.1",
"description": "traversal functionality for the Shift AST format",
"author": "Yusuke SUZUKI",
"homepage": "https://github.com/Constellation/shift-traverse-js",
"repository": {
"type": "git",
"url": "https://github.com/Constellation/shift-traverse-js.git"
},
"main": "lib/index.js",
"maintainers": [
{
"name": "Yusuke SUZUKI",
"email": "utatane.tea@gmail.com",
"web": "http://github.com/Constellation"
}
],
"files": [
"lib"
],
"scripts": {
"test": "gulp test"
},
"dependencies": {
"estraverse": "^1.9.1",
"object-assign": "^2.0.0",
"shift-spec": "^2015.1.3"
},
"devDependencies": {
"everything.js": "1.0.3",
"gulp": "^3.8.10",
"gulp-6to5": "^1.0.2",
"gulp-bump": "^0.1.11",
"gulp-espower": "^0.10.0",
"gulp-filter": "^2.0.0",
"gulp-git": "^0.5.5",
"gulp-mocha": "^2.0.0",
"gulp-plumber": "^0.6.6",
"gulp-sourcemaps": "^1.3.0",
"gulp-tag-version": "^1.2.1",
"lazypipe": "^0.2.2",
"power-assert": "^0.10.0",
"shift-codegen": "^3.0.0",
"shift-parser": "^3.0.1"
},
"keywords": [
"Shift",
"AST",
"traversal",
"abstract",
"syntax",
"tree"
],
"bugs": {
"url": "https://github.com/Constellation/shift-traverse-js/issues"
},
"licenses": [
{
"type": "BSD",
"url": "http://github.com/Constellation/shift-traverse-js/raw/master/LICENSE.BSD"
}
]
}