-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
62 lines (62 loc) · 1.43 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
{
"name": "closer",
"description": "Clojure parser and core library in JavaScript, compatible with the Mozilla Parser API.",
"homepage": "http://github.com/vickychijwani/closer.js",
"main": "lib/src/index.js",
"files": [
"package.json",
"LICENSE",
"README.md",
"lib/src/",
"repl"
],
"version": "0.2.3",
"license": "MIT",
"engines": {
"node": ">=0.10.24"
},
"author": {
"name": "Vicky Chijwani",
"email": "[email protected]",
"url": "http://vickychijwani.github.io/"
},
"repository": {
"type": "git",
"url": "http://github.com/vickychijwani/closer.js"
},
"keywords": [
"parser",
"parse",
"clojure",
"ast",
"syntax",
"spidermonkey",
"acorn",
"esprima"
],
"scripts": {
"prepublish": "grunt coffeelint && grunt coffee && grunt jasmine_test",
"test": "grunt test"
},
"devDependencies": {
"browserify": "^3.38.0",
"escodegen": "^1.3.1",
"grunt": "^0.4.4",
"grunt-browserify": "^2.0.8",
"grunt-coffeelint": "0.0.8",
"grunt-contrib-coffee": "^0.10.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-gh-pages": "^0.9.1",
"grunt-jasmine-node": "^0.2.1",
"grunt-jasmine-node-coverage": "^0.1.10",
"grunt-shell": "^0.6.4",
"jasmine-node": "^1.14.2",
"jison": "^0.4.13",
"json-diff": "^0.3.1"
},
"dependencies": {
"estraverse": "^1.5.1",
"lodash-node": "^2.4.1",
"mori": "0.2.9"
}
}