forked from dequelabs/axe-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.3 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "axe-core",
"description": "Accessibility engine for automated Web UI testing",
"version": "3.1.2",
"license": "MPL-2.0",
"engines": {
"node": ">=4"
},
"contributors": [
{
"name": "David Sturley",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
},
{
"name": "Dylan Barrell",
"email": "[email protected]",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
},
{
"name": "Wilco Fiers",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
},
{
"name": "Dian Fay",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
},
{
"name": "Marcy Sutton",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/dequelabs/axe-core.git"
},
"keywords": [
"Accessibility",
"a11y",
"testing",
"unit",
"tdd",
"bdd",
"aXe"
],
"main": "axe.js",
"typings": "axe.d.ts",
"standard-version": {
"scripts": {
"postbump": "npm run sri-update"
}
},
"scripts": {
"api-docs": "jsdoc --configure .jsdoc.json",
"build": "grunt",
"test-dts": "tsc",
"test": "npm run test-dts && grunt test",
"test-fast": "grunt test-fast",
"version": "echo \"use 'npm run release' to bump axe-core version\" && exit 1",
"prepublishOnly": "grunt build && grunt file-exists",
"release": "standard-version -a",
"next-release": "standard-version --scripts.prebump=./build/next-version.js --skip.commit=true --skip.tag=true",
"sri-update": "grunt build && node build/sri-update && git add sri-history.json",
"fmt": "prettier --write *.js, **/*.ts '{build,doc,lib,test}/**/*.js'"
},
"devDependencies": {
"aria-query": "^3.0.0",
"axios": "^0.18.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-polyfill": "^6.7.4",
"babel-preset-env": "^1.7.0",
"babelify": "^10.0.0",
"blanket": "~1.2.3",
"chai": "~4.1.2",
"clone": "~2.1.1",
"dot": "~1.1.2",
"eslint-config-prettier": "^3.0.0",
"fs-extra": "^7.0.0",
"grunt": "^1.0.2",
"grunt-babel": "^7.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^4.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^21.0.0",
"grunt-markdownlint": "^2.0.0",
"grunt-mocha": "1.1.0",
"grunt-parallel": "^0.5.1",
"grunt-retire": "^1.0.7",
"html-entities": "^1.2.0",
"husky": "^1.1.1",
"jquery": "^3.0.0",
"jsdoc": "^3.5.5",
"lint-staged": "^8.0.0",
"markdown-table": "^1.1.2",
"minami": "^1.2.3",
"mocha": "^5.2.0",
"prettier": "^1.14.0",
"promise": "~8.0.1",
"revalidator": "~0.3.1",
"selenium-webdriver": "~3.6.0",
"sri-toolbox": "^0.2.0",
"standard-version": "^4.4.0",
"typescript": "^2.9.2",
"uglify-js": "^3.4.4"
},
"dependencies": {},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"*.ts": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}