forked from swannodette/mori
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 898 Bytes
/
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
{
"name": "mori",
"version": "0.1.0",
"description": "Persistent Data Structures for JavaScript",
"keywords": [ "data", "structure", "persistent", "clojure", "map", "filter", "reduce" ],
"author": "David Nolen",
"homepage": "http://github.com/swannodette/mori",
"repository": {
"type": "git",
"url": "http://github.com/swannodette/mori.git",
"web": "http://github.com/swannodette/mori"
},
"bugs": {
"url": "http://github.com/swannodette/mori/issues"
},
"main": "./mori.node.js",
"scripts": {
"build": "lein deps && lein cljsbuild once release && echo ';module.exports = this.mori;\n' | cat mori.js - > mori.node.js"
"prepublish": "lein deps && lein cljsbuild once release && echo ';module.exports = this.mori;\n' | cat mori.js - > mori.node.js"
},
"licenses": [{
"type" : "ELP",
"url" : "http://www.eclipse.org/legal/epl-v10.html"
}]
}