-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.22 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "act-tools",
"version": "1.0.0",
"description": "Tools for Accessibility Conformance Testing rules",
"author": "Wilco Fiers",
"main": "dist/index.js",
"license": "MIT",
"private": true,
"scripts": {
"postinstall": "npm run build",
"build": "tsc",
"prebuild": "rimraf dist",
"develop": "jest --watch",
"format": "prettier --write src/**/*",
"lint": "eslint src/**/*",
"transform-rule": "ts-node src/cli/rule-transform.ts",
"build-examples": "ts-node src/cli/build-examples.ts",
"map-implementation": "ts-node src/cli/map-implementation.ts",
"implementations-update": "ts-node src/cli/implementations-update.ts",
"test": "jest",
"prepare": "husky install"
},
"dependencies": {
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.1",
"@types/js-yaml": "^4.0.2",
"@types/jsonld": "^1.5.8",
"@types/markdown-table": "2.0.0",
"@types/node": "^16.3.1",
"@types/request-promise": "^4.1.48",
"@types/unist": "^2.0.6",
"commander": "^8.0.0",
"debug": "^4.3.2",
"fastmatter": "^2.1.1",
"fs-extra": "^10.0.1",
"globby": "^11.0.4",
"jsonld": "^8.1.1",
"make-dir": "^3.1.0",
"markdown-table": "2.0.0",
"moment": "^2.29.1",
"outdent": "^0.8.0",
"rehype-stringify": "8.0.0",
"remark-frontmatter": "^3.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "8.1.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"rimraf": "^3.0.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"unified": "^9.2.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"husky": "^7.0.1",
"jest": "^29.5.0",
"lint-staged": "^11.0.1",
"pre-commit": "^1.2.2",
"prettier": "^2.3.2",
"ts-jest": "^29.1.0"
},
"jest": {
"rootDir": "./src/",
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"lint-staged": {
"src/**/*.{js,ts,json}": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}