forked from ifrederico/accessible-web-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 812 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 812 Bytes
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
{
"name": "accessible-web-widget",
"version": "1.1.4",
"description": "A lightweight, customizable accessibility widget for websites.",
"type": "module",
"scripts": {
"lint": "eslint . --max-warnings=0",
"build": "rollup -c",
"dev": "rollup -c --watch",
"check:axe-version": "npm view axe-core version",
"test:smoke": "playwright test",
"test": "npm run test:smoke",
"ci": "npm run lint && npm run build && npm run test:smoke"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.21.0",
"@playwright/test": "^1.52.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.21.0",
"globals": "^15.15.0",
"http-server": "^14.1.1",
"rollup": "^4.34.0",
"rollup-plugin-string": "^3.0.0"
}
}