-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "karma-loud",
"version": "1.0.6",
"description": "Karma plugin for Loud, web accessibility testing helper",
"keywords": [
"karma",
"karma-plugin",
"karma-framework",
"loud"
],
"author": "Ruslan Sagitov <rs@ruslansagitov.name>",
"license": "MIT",
"homepage": "https://github.com/ruslansagitov/karma-loud",
"repository": {
"type": "git",
"url": "https://github.com/ruslansagitov/karma-loud.git"
},
"bugs": {
"url": "https://github.com/ruslansagitov/karma-loud/issues",
"email": "rs@ruslansagitov.name"
},
"main": "./index.js",
"scripts": {
"test": "npm run-script lint && npm run-script check-writing && npm run-script karma-test",
"karma-test": "karma start ./test/karma.conf.js --single-run",
"lint": "eslint .",
"check-writing": "write-good README.md && write-good CONTRIBUTING.md --no-tooWordy",
"coverage": "nyc --reporter=lcov npm run karma-test"
},
"devDependencies": {
"eslint": "^8.56.0",
"jasmine-core": "^5.1.1",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-cli": "^2.0.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.1.0",
"loud": "^0.9.3",
"nyc": "^15.1.0",
"write-good": "^1.0.8"
},
"engines": {
"node": ">=20"
}
}