This repository was archived by the owner on Feb 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.58 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.58 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "vinberodb",
"version": "3.0.4",
"description": "Distributed object database",
"main": "build/index.js",
"scripts": {
"build": "rm -rf build && babel src --out-dir build --ignore tests/",
"lint": "eslint src",
"prepublishOnly": "npm run build",
"test": "mocha -r babel-register --recursive src/tests --timeout 5000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oprogramador/vinberodb.git"
},
"keywords": [
"distributed",
"object",
"database",
"orm",
"odm",
"document",
"key",
"value"
],
"author": "oprogramador",
"license": "MIT",
"bugs": {
"url": "https://github.com/oprogramador/vinberodb/issues"
},
"homepage": "https://github.com/oprogramador/vinberodb#readme",
"devDependencies": {
"@babel/core": "^7.5.4",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.5.0",
"chai-subset": "^1.6.0",
"dirty-chai": "^2.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-improved": "^4.0.9",
"eslint-import-resolver-babel-module": "^5.1.0",
"mocha": "^6.1.4",
"sinon": "^7.3.2",
"sinon-as-promised": "^4.0.3",
"sinon-chai": "^3.3.0",
"vinberodb-test-helpers": "^2.0.2"
},
"dependencies": {
"bluebird": "^3.5.5",
"level-promise": "^2.1.1",
"leveldown": "^1.9.0",
"levelup": "^1.3.9",
"uuid": "^3.3.2"
}
}