-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.11 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
{
"name": "ibtree",
"version": "0.3.2",
"description": "A performant, in-memory, immutable B+ tree data structure",
"main": "dist/ibtree.js",
"scripts": {
"test": "make test",
"prepublish": "make build"
},
"keywords": [
"b+ tree",
"immutable",
"data structure"
],
"author": "Tommi Kaikkonen <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/tommikaikkonen/ibtree.git"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-eslint": "^4.1.5",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.7.2",
"benchmark": "^2.1.0",
"chai": "^3.5.0",
"comma-it": "0.0.7",
"deep-freeze": "0.0.1",
"eslint": "^2.5.1",
"eslint-config-airbnb": "6.2.0",
"gulp": "^3.9.1",
"gulp-gh-pages": "^0.5.4",
"immutable": "^3.7.6",
"lodash": "^4.6.1",
"microtime": "^2.0.0",
"mocha": "^2.4.5",
"pad": "^1.0.0",
"ramda": "^0.21.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"webpack": "^1.13.1"
}
}