-
Notifications
You must be signed in to change notification settings - Fork 149
/
package.json
53 lines (53 loc) · 1.17 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
{
"name": "mori",
"version": "0.3.2",
"description": "Persistent Data Structures for JavaScript",
"homepage": "https://github.com/swannodette/mori",
"author": "David Nolen (https://github.com/swannodette)",
"keywords": [
"data",
"structure",
"persistent",
"clojure",
"clojurescript",
"map",
"filter",
"reduce"
],
"contributors": [
"David Nolen (https://github.com/swannodette)"
],
"bugs": {
"url": "https://github.com/swannodette/mori/issues"
},
"licenses": [
{
"type": "EPL",
"url": "https://raw.github.com/swannodette/mori/master/epl-v10.html"
}
],
"main": "./mori.js",
"repository": {
"type": "git",
"url": "git://github.com/swannodette/mori.git"
},
"engines": {
"node": ">=0.8.22"
},
"dependencies": {},
"devDependencies": {
"immutable": "3.5.0",
"jasmine-node": "1.7.0"
},
"scripts": {
"build": "./scripts/build.sh",
"build-clean": "./scripts/build_clean.sh",
"clean": "./scripts/clean.sh",
"prepublish": "npm run-script build-clean",
"docs": "./scripts/docs.sh",
"test": "jasmine-node spec"
},
"directories": {
"test": "./spec"
}
}