jsedn
Version:
js implementation of edn
70 lines (69 loc) • 1.64 kB
JSON
{
"name": "jsedn",
"description": "js implementation of edn",
"version": "0.4.1",
"keywords": [
"lisp",
"clojure",
"edn",
"serialization",
"datomic"
],
"maintainers": [
{
"name": "Shaun Gilchrist",
"email": "shaunxcode@gmail.com",
"web": "http://order-of-no.posterous.com"
}
],
"contributors": [
{
"name": "Shaun Gilchrist",
"email": "shaunxcode@gmail.com",
"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"
}