-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.5 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@digitalbazaar/mocha-w3c-interop-reporter",
"version": "1.9.1-0",
"description": "Mocha reporter that produces reports that can be embedded in specs.",
"type": "module",
"main": "./dist/cjs/index.cjs",
"exports": {
"require": "./dist/cjs/index.cjs",
"import": "./lib/index.js"
},
"bin": {
"interopReporter": "./bin/bin.js"
},
"files": [
"lib/*",
"dist/*",
"templates/*"
],
"scripts": {
"rollup": "rollup -c rollup.config.js",
"build": "npm run clear && npm run rollup",
"clear": "rimraf dist/ && mkdir dist",
"prepare": "npm run build",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/mocha-w3c-interop-reporter.git"
},
"keywords": [
"reporter",
"mocha",
"w3c"
],
"author": {
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "https://digitalbazaar.com"
},
"engines": {
"node": ">=18"
},
"bugs": {
"url": "https://github.com/digitalbazaar/mocha-w3c-interop-reporter/issues"
},
"homepage": "https://github.com/digitalbazaar/mocha-w3c-interop-reporter#readme",
"dependencies": {
"chalk": "^4.1.0",
"handlebars": "^4.7.7",
"uuid": "^8.3.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-digitalbazaar": "^3.0.0",
"eslint-plugin-jsdoc": "^39.2.9",
"rimraf": "^3.0.2",
"rollup": "^2.72.1"
},
"peerDependencies": {
"mocha": ">= 6.0"
}
}