forked from open-indy/Koa11y
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.55 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "koa11y",
"version": "4.0.0",
"author": "The Jared Wilcurt",
"description": "Check if a website has accessibility issues.",
"keywords": [
"Accessibility",
"standards",
"automated",
"WCAG",
"Section 508"
],
"maintainers": [
{
"name": "TheJaredWilcurt",
"email": "[email protected]",
"web": "http://github.com/TheJaredWilcurt"
}
],
"repository": [
{
"type": "git",
"url": "git://github.com/TheJaredWilcurt/Koa11y.git"
}
],
"bugs": "https://github.com/TheJaredWilcurt/Koa11y/issues",
"main": "index4.htm",
"window": {
"title": "Koa11y",
"icon": "img/icon32.png",
"resizable": true,
"visible": true,
"transparent": false,
"width": 900,
"height": 550,
"min_width": 400,
"min_height": 200,
"position": "center",
"always-on-top": false,
"show_in_taskbar": true,
"fullscreen": false,
"frame": true,
"as_desktop": false
},
"engines": {
"node": "5.12.0",
"npm": "3.8.6"
},
"nodejs": true,
"single-instance": true,
"node-main": "scripts/node.js",
"webkit": {
"page-cache": false,
"java": false,
"plugin": true
},
"dependencies": {
"base64-img": "^1.0.3",
"fs-extra": "^4.0.2",
"http-vue-loader": "^1.3.4",
"json2csv": "3.11.5",
"pa11y": "4.13.1",
"phantomjs-prebuilt": "^2.1.15",
"semver": "^5.4.1",
"vue": "^2.5.2"
},
"devDependencies": {
"7zip-bin": "^2.2.7",
"eslint": "^4.10.0",
"nw": "0.14.7-sdk",
"nw-builder": "^3.5.1",
"pre-commit": "^1.2.2",
"rcedit": "^0.9.0",
"sass-lint": "^1.12.1",
"uikit": "^3.0.0-beta.32"
},
"scripts": {
"start": "nw .",
"build": "node build-script.js",
"phantomjs": "phantomjs",
"phantomjs-prebuilt": "phantomjs-prebuilt",
"lint": "eslint --config=.eslintrc.js scripts/**/*.js sasslinter.js build-script.js",
"fix": "eslint --fix --config=.eslintrc.js scripts/**/*.js sasslinter.js build-script.js",
"sasslint": "node sasslinter.js"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/TheJaredWilcurt/Koa11y/blob/master/LICENSE"
}
],
"precommit": [
"lint",
"sasslint"
]
}