-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "@acot/html-pickup",
"version": "0.0.19",
"description": "Use the CSS Selector to pick up the elements from the HTML string.",
"homepage": "https://github.com/acot-a11y/acot/tree/main/packages/html-pickup",
"bugs": {
"url": "https://github.com/acot-a11y/acot/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/acot-a11y/acot.git",
"directory": "packages/html-pickup"
},
"license": "MIT",
"author": "wadackel <[email protected]>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!**/__mocks__",
"!**/__tests__"
],
"scripts": {
"build": "tsc",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"rootDir": "src",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts?(x)"
]
},
"dependencies": {
"chalk": "^4.1.0",
"cli-truncate": "^2.1.0",
"css-select": "^2.1.0",
"css-select-parse5-adapter": "^1.0.0-pre.1",
"parse5": "^6.0.0",
"strip-ansi": "^6.0.0"
},
"publishConfig": {
"access": "public"
}
}