forked from bbc/bbc-a11y
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.57 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
{
"name": "bbc-a11y",
"version": "2.3.2",
"description": "BBC Accessibility standards checker",
"main": "./bin/bbc-a11y.js",
"directories": {},
"scripts": {
"test": "./node_modules/.bin/electron-mocha --renderer && ./node_modules/.bin/cucumber-electron && standard",
"standard": "standard",
"standard-fix": "standard --fix",
"browserify": "browserify ./lib/a11y.js -o ./dist/bundle.js",
"watchify": "watchify ./lib/a11y.js -o ./dist/bundle.js",
"generate-coverage": "./scripts/generate-coverage",
"web-server": "node -e \"require('./features/support/web_server').ensureRunningOn(7654).then(() => console.log('http://localhost:7654'))\""
},
"bin": {
"bbc-a11y": "./bin/bbc-a11y.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bbc/bbc-a11y.git"
},
"author": "BBC",
"license": "Apache-2.0",
"engines": {
"node": ">=8.x"
},
"bugs": {
"url": "https://github.com/bbc/bbc-a11y/issues"
},
"homepage": "https://github.com/bbc/bbc-a11y#readme",
"dependencies": {
"commander": "^2.17.1",
"electron": "^2.0.8",
"httpism": "^3.24.0",
"jquery": "^3.4.0"
},
"devDependencies": {
"browser-monkey": "2.7.2",
"browserify": "16.2.2",
"chai": "4.1.2",
"cucumber": "4.2.1",
"cucumber-electron": "2.5.0",
"diff": "3.5.0",
"electron-mocha": "6.0.4",
"express": "4.16.3",
"mkdirp": "0.5.1",
"mocha": "5.2.0",
"rimraf": "2.6.2",
"standard": "11.0.1",
"watchify": "^3.11.1"
},
"standard": {
"ignore": [
"test/configs/syntaxError.js"
]
}
}