-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.37 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.37 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
{
"name": "@bbc/a11y",
"description": "BBC Accessibility standards checker",
"author": "BBC",
"license": "Apache-2.0",
"version": "3.0.0",
"main": "./bin/bbc-a11y.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bbc/bbc-a11y.git"
},
"bugs": {
"url": "https://github.com/bbc/bbc-a11y/issues"
},
"homepage": "https://github.com/bbc/bbc-a11y#readme",
"engines": {
"node": ">=20.x"
},
"bin": {
"bbc-a11y": "./bin/bbc-a11y.js"
},
"scripts": {
"test:unit": "./node_modules/.bin/electron-mocha --window-config ./electron-mocha.config.json --renderer",
"test:e2e": "./node_modules/.bin/cucumber-electron",
"test": "npm run test:unit && npm run test:e2e && standard",
"standard": "standard",
"standard-fix": "standard --fix",
"generate-coverage": "./scripts/generate-coverage"
},
"dependencies": {
"commander": "5.1.0",
"electron": "13.5.2",
"jquery": "3.7.1"
},
"resolutions": {
"electron": "13.5.2"
},
"devDependencies": {
"@cucumber/cucumber": "7.2.1",
"@cucumber/electron": "4.1.3",
"chai": "4.3.6",
"electron-mocha": "11.0.2",
"mocha": "10.0.0",
"standard": "17.1.2"
},
"standard": {
"ignore": [
"test/configs/syntaxError.js"
]
},
"files": [
"bin",
"electron",
"lib",
"package.json",
"README.md",
"LICENSE"
]
}