-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.08 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
{
"name": "@bedrock/test",
"version": "8.2.1-0",
"type": "module",
"description": "Bedrock test",
"license": "Apache-2.0",
"main": "./lib/index.js",
"engines": {
"node": ">=14"
},
"files": [
"lib/**/*.js"
],
"scripts": {
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/bedrock-test"
},
"keywords": [
"bedrock test"
],
"author": {
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "https://digitalbazaar.com"
},
"bugs": {
"url": "https://github.com/digitalbazaar/bedrock-test/issues"
},
"homepage": "https://github.com/digitalbazaar/bedrock-test",
"dependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cycle": "^1.0.3",
"mocha": "^10.0.0"
},
"peerDependencies": {
"@bedrock/core": "^6.0.0"
},
"directories": {
"lib": "./lib"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-digitalbazaar": "^2.8.0",
"eslint-plugin-jsdoc": "^37.9.7",
"jsdoc-to-markdown": "^7.1.1"
}
}