-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 954 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 954 Bytes
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
{
"name": "@norjs/database",
"version": "1.0.14",
"description": "NorJS Database Service client",
"main": "./src/index.js",
"bin": {
"nor-database": "./src/bin/database.js"
},
"scripts": {
"test": "mocha test/**/*.spec.js",
"test-watch": "mocha --watch-extensions js --watch test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/norjs/database.git"
},
"keywords": [
"document-database",
"database",
"nosql",
"server",
"service",
"client"
],
"author": "Jaakko Heusala <jheusala@iki.fi>",
"license": "MIT",
"bugs": {
"url": "https://github.com/norjs/database/issues"
},
"homepage": "https://github.com/norjs/database#readme",
"dependencies": {
"@norjs/socket": "^1.0.14",
"@norjs/types": "^1.0.14",
"@norjs/utils": "^1.0.14",
"lodash": "^4.17.15"
},
"devDependencies": {
"mocha": "^6.1.4",
"sinon": "^7.5.0"
}
}