forked from gearsandcode/protractor-axe-html-report-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "protractor-axe-html-report-plugin",
"version": "0.0.1",
"dependencies": {
"axe-core": "^2.0.5",
"axe-webdriverjs": "^0.2.0",
"handlebars": "4.0.11",
"httpster": "1.0.3",
"lodash": "4.17.5",
"selenium-webdriver": "^2.46.1"
},
"description": "A protractor plugin that generates an HTML aXe accessibility report",
"devDependencies": {
"protractor": "^4.0.10"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gearsandcode/protractor-axe-html-report-plugin.git"
},
"author": "Jesse Clark <gearsandcode@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gearsandcode/protractor-axe-html-report-plugin/issues"
},
"homepage": "https://github.com/gearsandcode/protractor-axe-html-report-plugin#readme",
"keywords": [
"angular",
"test",
"testing",
"webdriver",
"webdriverjs",
"protractor",
"protractor-plugin",
"accessibility"
],
"scripts": {
"start": "httpster -d testapp/ -p `node -p 'process.env.HTTP_PORT || require(\"./spec/environment\").webServerDefaultPort'`",
"test": "node test.js"
}
}