-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1007 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
39
40
41
42
43
44
{
"name": "@bedrock/server",
"version": "5.1.1-0",
"type": "module",
"description": "Bedrock core server module",
"license": "Apache-2.0",
"main": "./lib/index.js",
"scripts": {
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/bedrock-server"
},
"keywords": [
"bedrock",
"server"
],
"author": {
"name": "Digital Bazaar, Inc.",
"email": "support@digitalbazaar.com",
"url": "https://digitalbazaar.com/"
},
"bugs": {
"url": "https://github.com/digitalbazaar/bedrock-server/issues"
},
"homepage": "https://github.com/digitalbazaar/bedrock-server",
"dependencies": {
"express": "^4.18.0",
"morgan": "^1.10.0"
},
"peerDependencies": {
"@bedrock/core": "^6.0.0"
},
"directories": {
"lib": "./lib"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-digitalbazaar": "^2.8.0",
"eslint-plugin-jsdoc": "^37.9.7",
"jsdoc-to-markdown": "^7.1.1"
}
}