forked from bbc/bbc-a11y
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.51 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.51 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
{
"name": "bbc-a11y",
"version": "2.0.1",
"description": "BBC Accessibility standards checker",
"main": "index.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",
"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.11.0",
"cucumber": "3.0.3",
"electron": "1.7.12",
"httpism": "^3.7.0",
"jquery": "3.2.1"
},
"devDependencies": {
"browser-monkey": "^2.7.0",
"browserify": "14.4.0",
"chai": "4.1.2",
"cucumber-electron": "2.3.1",
"diff": "3.3.1",
"electron-mocha": "4.0.2",
"express": "4.15.4",
"mkdirp": "0.5.1",
"mocha": "3.5.0",
"rimraf": "2.6.1",
"standard": "10.0.3",
"watchify": "3.9.0"
},
"standard": {
"ignore": ["test/configs/syntaxError.js"]
}
}