-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.02 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
64
65
66
67
{
"name": "selderee",
"description": "Selectors decision tree - pick matching selectors, fast",
"repository": {
"type": "git",
"url": "git+https://github.com/mxxii/selderee.git"
},
"author": "KillyMXI",
"funding": "https://ko-fi.com/killymxi",
"license": "MIT",
"workspaces": [
"packages/plugin-htmlparser2",
"packages/selderee"
],
"scripts": {
"build:docs": "typedoc --plugin typedoc-plugin-markdown",
"build:selderee": "npm run build -w ./packages/selderee",
"build:plugin-htmlparser2": "npm run build -w ./packages/plugin-htmlparser2",
"build:packages": "npm run build:selderee && npm run build:plugin-htmlparser2",
"build": "npm run copy:readme && npm run build:packages && npm run build:docs",
"checkAll": "npm run lint && npm test",
"copy:readme": "copyfiles README.md packages/selderee/",
"example": "node ./example/example.cjs",
"lint:eslint": "eslint .",
"lint:md": "markdownlint-cli2",
"lint": "npm run lint:eslint && npm run lint:md",
"prepublishOnly": "npm run checkAll",
"pretest": "npm run build:packages",
"test": "ava --timeout=20s"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.1",
"@tsconfig/node14": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"ava": "^5.3.0",
"copyfiles": "^2.4.1",
"eslint": "^8.41.0",
"eslint-plugin-jsonc": "^2.8.0",
"eslint-plugin-tsdoc": "^0.2.17",
"htmlparser2": "^8.0.2",
"markdownlint-cli2": "~0.7.1",
"rimraf": "^5.0.1",
"rollup": "^2.79.1",
"rollup-plugin-cleanup": "^3.2.1",
"ts-node": "^10.9.1",
"tslib": "^2.5.2",
"typedoc": "0.22.18",
"typedoc-plugin-markdown": "3.12.1",
"typescript": "4.7.4"
},
"ava": {
"extensions": {
"ts": "module",
"mjs": true,
"cjs": true
},
"files": [
"packages/*/test/**/*"
],
"nodeArguments": [
"--loader=ts-node/esm",
"--experimental-specifier-resolution=node"
],
"verbose": true
}
}