-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "@bedrock/core",
"version": "6.2.1-0",
"type": "module",
"description": "A core foundation for rich Web applications.",
"license": "Apache-2.0",
"author": {
"name": "Digital Bazaar, Inc.",
"email": "support@digitalbazaar.com",
"url": "https://digitalbazaar.com/"
},
"keywords": [
"bedrock"
],
"scripts": {
"start": "node index.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/bedrock"
},
"bugs": {
"url": "https://github.com/digitalbazaar/bedrock/issues"
},
"homepage": "https://github.com/digitalbazaar/bedrock",
"dependencies": {
"@digitalbazaar/async-node-events": "^3.0.0",
"commander": "^9.2.0",
"cycle": "^1.0.3",
"fast-safe-stringify": "^2.1.1",
"passwd-user": "^4.0.0",
"serialize-error": "^11.0.3",
"triple-beam": "^1.3.0",
"winston": "^3.7.2",
"winston-transport": "^4.5.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-digitalbazaar": "^5.0.1",
"eslint-plugin-jsdoc": "^50.4.1",
"eslint-plugin-unicorn": "^56.0.0",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^9.0.2"
},
"engines": {
"node": ">=18"
},
"main": "./lib/index.js"
}