-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
65 lines (65 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "aria-at",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint . --fix && prettier --write .",
"build": "npm run create-all-tests && npm run review-tests",
"build-v1": "npm run create-all-tests -- --version1 --verbose && npm run review-tests",
"build-v2": "npm run create-all-tests -- --version2 --verbose && npm run review-tests",
"serve": "npx live-server build",
"build:serve": "npm run cleanup && npm run build && npm run serve",
"validate": "npm run create-all-tests -- --verbose --validate",
"cleanup": "rimraf build",
"create-all-tests": "cross-var node scripts/create-all-tests --testplan=$npm_config_testplan",
"review-tests": "cross-var node scripts/test-reviewer --testplan=$npm_config_testplan",
"update-reference": "node scripts/update-reference.js",
"count": "node ./scripts/count-assertions.js",
"make-v2": "node scripts/v2maker.js",
"test": "rimraf __test__/build && jest --runInBand",
"prepare": "husky"
},
"dependencies": {
"cross-var": "github:radozebra/cross-var#1.1.1",
"csv-parser": "^3.0.0",
"csv-writer": "^1.6.0",
"fs-extra": "^11.2.0",
"json-beautify": "^1.1.1",
"minimist": "^1.2.8",
"mustache": "^4.2.0",
"node-html-parser": "^6.1.13",
"rimraf": "^6.0.1",
"simple-git": "^3.25.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"babel-jest": "^29.7.0",
"eslint": "^9.9.1",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w3c/aria-at.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/w3c/aria-at/issues"
},
"homepage": "https://github.com/w3c/aria-at#readme",
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"engines": {
"node": ">=20.x"
}
}