-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.1 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
47
48
49
50
51
52
{
"name": "@dkh-dev/app",
"version": "5.1.0",
"description": "Simple server app",
"main": "index.js",
"bin": {
"keygen": "./bin/keygen.js"
},
"files": [
"lib/*",
"bin/*"
],
"scripts": {
"test": "node test --db --app",
"prepublishOnly": "npm test"
},
"dependencies": {
"@dkh-dev/argv": "^2.3.1",
"@dkh-dev/crypto": "^4.0.0",
"js-yaml": "^3.14.0"
},
"peerDependencies": {
"ajv": "^7.0.0-beta.1",
"mongodb": "^3.6.3"
},
"devDependencies": {
"@dkh-dev/eslint-config": "^1.6.2",
"@dkh-dev/tape-helper": "^1.0.7",
"ajv": "^7.0.0-beta.1",
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"mongodb": "^3.6.3",
"tape": "^5.0.1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dkh-dev/app.git"
},
"keywords": [
"app",
"server",
"express",
"mongo",
"mongodb"
],
"author": "Hoang <[email protected]> (https://dangkyokhoang.github.io/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/dkh-dev/app/issues"
},
"homepage": "https://github.com/dkh-dev/app#readme"
}