-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.86 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.86 KB
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
{
"name": "abledom",
"version": "0.7.1",
"author": "Marat Abdullin <marata@microsoft.com>",
"description": "Continuous detection of typical web application accessibility problems.",
"license": "MIT",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"typings": "./dist/index.d.ts",
"typesVersions": {
"<4.0": {
"dist/index.d.ts": [
"dist/ts3.9/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsup && npx downlevel-dts ./dist ./dist/ts3.9",
"clean": "rimraf dist",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint src/ tests/ devtools/",
"lint:fix": "npm run lint -- --fix",
"type-check": "tsc -b tsconfig.json",
"prepublishOnly": "npm run lint && npm run format && npm run build",
"release": "release-it",
"test": "start-server-and-test dev http://localhost:5173 'playwright test'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/abledom.git"
},
"bugs": {
"url": "https://github.com/microsoft/abledom/issues"
},
"homepage": "https://github.com/microsoft/abledom#readme",
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^25.4.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@xmldom/xmldom": "^0.9.8",
"downlevel-dts": "^0.11.0",
"esbuild-plugin-inline-import": "^1.1.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.32.0",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"release-it": "^19.2.4",
"rimraf": "^6.1.3",
"start-server-and-test": "^2.1.5",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^7.3.1"
}
}