forked from OpenDAWN/node-cdb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 866 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
{
"name": "constant-db64",
"version": "3.0.0",
"description": "A cdb implementation for node.js",
"author": "Oren Zomer",
"repository": {
"type": "git",
"url": "https://github.com/ozomer/node-cdb-64.git"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"vows": "^0.8.2"
},
"scripts": {
"lint": "eslint ./src/ --ignore-path .gitignore",
"test": "vows --spec",
"benchmark": "node benchmark/benchmark.js"
},
"keywords": [
"cdb",
"constant",
"database"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ozomer/node-cdb-64/issues"
},
"homepage": "https://github.com/ozomer/node-cdb-64",
"jshintConfig": {
"node": true
},
"dependencies": {
"doasync": "2.0.1"
}
}