forked from moll/js-strange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (38 loc) · 871 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "strange",
"version": "1.7.2",
"description": "Range aka interval object. Supports exclusive and infinite ranges. Comes with an interval tree (augmented binary search tree).",
"keywords": [
"range",
"ranges",
"interval",
"interval-tree",
"bst",
"integer",
"integers",
"sort",
"bounds",
"math"
],
"homepage": "https://github.com/moll/js-strange",
"bugs": "https://github.com/moll/js-strange/issues",
"author": {
"name": "Andri Möll",
"email": "[email protected]",
"url": "http://themoll.com"
},
"repository": {
"type": "git",
"url": "git://github.com/moll/js-strange.git"
},
"licenses": [{
"type": "LAGPL",
"url": "https://github.com/moll/js-strange/blob/master/LICENSE"
}],
"main": "index.js",
"scripts": {"test": "make test"},
"devDependencies": {
"mocha": ">= 2.0.0 < 3",
"must": ">= 0.13.0 < 0.14"
}
}