forked from E1Edatatracker/protractor-axe-report-plugin
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "protractor-axe-html-report-plugin",
"version": "1.1.1",
"dependencies": {
"@types/lodash": "^4.14.109",
"@axe-core/webdriverjs": "^4.1.1",
"handlebars": "4.0.11",
"httpster": "1.0.3",
"lodash": "4.17.5",
"selenium-webdriver": "^2.53.3"
},
"description": "A protractor plugin that generates an HTML aXe accessibility report",
"devDependencies": {
"@types/node": "^10.3.1",
"protractor": "^5.4.1"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gearsandcode/protractor-axe-html-report-plugin.git"
},
"author": "Jesse Clark <[email protected]>",
"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"
}
}