forked from 18F/node-continua11y-acceptance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.04 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
{
"name": "continua11y-acceptance",
"version": "1.1.1",
"description": "Test helpers for specifying accessibility of pages during web development.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test node_modules/.bin/mocha --recursive",
"lint": "node_modules/.bin/jshint index.js lib/ test/",
"test_coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/18F/node-continua11y-acceptance.git"
},
"keywords": [
"accessibility",
"acceptance",
"testing"
],
"author": "baccigalupi",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/18F/node-continua11y-acceptance/issues"
},
"homepage": "https://github.com/18F/node-continua11y-acceptance#readme",
"devDependencies": {
"codeclimate-test-reporter": "^0.4.0",
"express": "^4.14.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.3",
"mocha": "^3.1.2"
},
"dependencies": {
"pa11y": "^4.0.1",
"rimraf": "^2.5.4"
}
}