This repository has been archived by the owner on Sep 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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": "@quailjs/quail",
"description": "Accessibility testing in the browser and on the server.",
"homepage": "http://quailjs.org",
"version": "3.1.0",
"license": "MIT",
"author": {
"name": "Jesse Beach",
"email": "[email protected]",
"url": "https://jessebeach.github.io/"
},
"repository": {
"type": "git",
"url": "git://github.com/quailjs/quail.git"
},
"scripts": {
"jscs": "jscs -c .jscsrc src/**/*.js test/assessmentSpecs/testRunner.js test/assessmentSpecs/*.js",
"eslint": "eslint -c .eslintrc src/**/*.js test/assessmentSpecs/*.js",
"build": "quail build",
"linters": "npm run jscs && npm run eslint",
"test": "npm run jscs && npm run eslint && npm run test-runner",
"selenium": "start-selenium",
"test-runner": "node ./test/assessmentSpecs/testRunner.js",
"test-selenium": "start-selenium && npm run test-runner",
"install-selenium-standalone": "selenium-standalone install",
"watch": "npm-watch"
},
"dependencies": {
"glob": "^6.0.1",
"guesslanguage": "^0.2.0",
"http-server": "0.7.3",
"progress": "^1.1.8",
"q": "^1.1.2",
"rainbowvis.js": "^1.0.1",
"selenium-standalone": "^4.7.2",
"stdio": "^0.2.7",
"webdriverio": "^3.3.0"
},
"devDependencies": {
"@quailjs/quail-core": "0.0.21",
"babel-eslint": "^5.0.0-beta4",
"chai": "^1.9.2",
"chai-as-promised": "^4.1.1",
"chai-spies": "^0.5.1",
"deepmerge": "^0.2.7",
"eslint": "^1.3.1",
"jscs": "jscs-dev/node-jscs#c5adeba",
"mocha": "^2.0.1",
"npm-watch": "0.0.1",
"phantomjs": "^1.9.19",
"sinon": "^1.10.3"
},
"watch": {
"build": [
"src/**/*.js"
]
}
}