-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.12 KB
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
{
"name" : "free-falafel",
"description" : "transform the ast on a recursive walk",
"version" : "0.2.2",
"repository" : {
"type" : "git",
"url" : "https://github.com/freethenation/node-falafel.git"
},
"main" : "index.js",
"keywords" : [
"ast",
"source",
"traversal",
"syntax",
"tree",
"burrito"
],
"directories" : {
"example" : "example",
"test" : "test"
},
"scripts" : {
"test" : "tap ./test/array.js ./test/async.js ./test/for.js ./test/parent.js ./test/breadthFirstFn.js ./test/keyword.js"
},
"dependencies" : {
"esprima" : "substack/esprima#is-keyword"
},
"devDependencies" : {
"tape" : "~0.0.2",
"tap" : "~0.3.0"
},
"engine" : "node >= 0.8.0",
"license" : "MIT",
"testling" : {
"files" : "test/*.js",
"browsers" : {
"iexplore" : [ "6.0", "7.0", "8.0", "9.0" ],
"chrome" : [ "20.0" ],
"firefox" : [ "10.0", "15.0" ],
"safari" : [ "5.1" ],
"opera" : [ "12.0" ]
}
}
}