-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
57 lines (57 loc) · 1.26 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
{
"name": "@acot/acot-reporter-dot",
"version": "0.0.19",
"description": "A dot reporter for @acot/cli.",
"keywords": [
"acot",
"acot-reporter"
],
"homepage": "https://github.com/acot-a11y/acot/tree/main/packages/acot-reporter-dot",
"bugs": {
"url": "https://github.com/acot-a11y/acot/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/acot-a11y/acot.git",
"directory": "packages/acot-reporter-dot"
},
"license": "MIT",
"author": "wadackel <[email protected]>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!**/__mocks__",
"!**/__tests__"
],
"scripts": {
"build": "tsc"
},
"jest": {
"preset": "ts-jest",
"rootDir": "src",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts?(x)"
]
},
"dependencies": {
"@acot/html-pickup": "0.0.19",
"@acot/module-loader": "0.0.19",
"@acot/reporter": "0.0.19",
"boxen": "^5.0.0",
"chalk": "^4.0.0",
"figures": "^3.2.0",
"indent-string": "^4.0.0",
"log-symbols": "^4.0.0",
"log-update": "^4.0.0",
"plur": "^4.0.0",
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"@acot/types": "0.0.19"
},
"publishConfig": {
"access": "public"
}
}