forked from kriszyp/cobase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 925 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
{
"name": "cobase",
"author": "Kris Zyp",
"version": "0.6.14",
"description": "Compositional data stores of reactive JavaScript transform, index, reduce, and join functions, built on NodeJS, Alkali, and LMDB",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/kriszyp/cobase"
},
"scripts": {
"test": "./node_modules/.bin/mocha tests/unit -u tdd",
"build": "./node_modules/.bin/tsc"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"dpack": "^0.6.20",
"lmdb-store": "^0.3.19",
"ordered-binary": "^0.1.1"
},
"peerDependencies": {
"alkali": "^0.21.20"
},
"optionalDependencies": {
"lz4": "^0.6.3",
"weakvaluemap": "^0.3.2"
},
"devDependencies": {
"@types/node": "latest",
"chai": "^4",
"fs-extra": "^9.0.0",
"mocha": "^5",
"typescript": "^2.9.2",
"webpack": "^4.16.3"
}
}