-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "esdispatch",
"version": "0.0.3",
"description": "trigger events based on esquery selectors during a traversal of a SpiderMonkey format AST",
"homepage": "https://github.com/michaelficarra/esdispatch",
"keywords": [],
"author": "Michael Ficarra",
"repository": {
"type": "git",
"url": "git://github.com/michaelficarra/esdispatch"
},
"bugs": "https://github.com/michaelficarra/esdispatch/issues",
"engines": {
"node": "0.8.x || 0.9.x || 0.10.x"
},
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {
"esquery": "git://github.com/jrfeenst/esquery.git#master",
"estraverse": "~1.3.2"
},
"devDependencies": {
"coffee-script-redux": "2.0.0-beta7",
"commonjs-everywhere": "0.9.x",
"mocha": "~1.12.1",
"semver": "~2.1.0",
"esprima": "~1.0.4"
},
"scripts": {
"test": "make test"
},
"licenses": [
{
"type": "BSD",
"url": "https://github.com/michaelficarra/esdispatch/blob/master/LICENSE"
}
]
}