-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 905 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
{
"name": "double-cycle",
"version": "0.1.5",
"author": "Eli Skeggs <[email protected]>",
"description": "a specialized datastructure with double indexing and queue-based entry cycling",
"main": "./index",
"scripts": {
"test": "./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/skeggse/double-cycle.git"
},
"homepage": "https://github.com/skeggse/double-cycle",
"bugs": "https://github.com/skeggse/double-cycle/issues",
"keywords": [
"double-cycle",
"double",
"cycle",
"index",
"indexes",
"indexing",
"data",
"structure",
"datastructure"
],
"devDependencies": {
"expect.js": "~0.2.0",
"mocha": "~1.13.0"
},
"licenses": [
{
"type": "unlicense",
"url": "https://github.com/skeggse/double-cycle/blob/master/UNLICENSE"
}
],
"engines": {
"node": "*"
}
}