-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
69 lines (69 loc) · 1.6 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
65
66
67
68
69
{
"name": "jsedn",
"description": "js implementation of edn",
"version": "0.4.1",
"keywords": [
"lisp",
"clojure",
"edn",
"serialization",
"datomic"
],
"maintainers": [
{
"name": "Shaun Gilchrist",
"email": "[email protected]",
"web": "http://order-of-no.posterous.com"
}
],
"contributors": [
{
"name": "Shaun Gilchrist",
"email": "[email protected]",
"web": "http://order-of-no.posterous.com"
}
],
"bugs": "http://www.github.com/shaunxcode/jsedn/issues",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"repository": {
"type": "git",
"url": "http://www.github.com/shaunxcode/jsedn"
},
"devDependencies": {
"coffee-script": "latest",
"coveralls": "^2.11.14",
"microtime": "latest",
"nyc": "^8.3.2",
"pre-commit": "^1.1.3",
"underscore": "latest"
},
"dependencies": {
"commander": "latest",
"type-component": "latest",
"equals": "latest"
},
"bin": {
"jsedn": "./bin/jsedn"
},
"scripts": {
"test-perf": "coffee test/perf.coffee && coffee test/performance-tests.coffee",
"test-spec": "coffee test/all-edn-tests.coffee && coffee test/all-invalid-edn-tests.coffee && coffee test/assertion.coffee && coffee test/primitives.coffee && coffee test/unify.coffee",
"test": "npm run test-perf && nyc --extension .coffee npm run test-spec"
},
"nyc": {
"exclude": [
"test",
"node_modules"
],
"reporter": [
"lcov",
"text-summary"
]
},
"main": "index.js"
}