-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.28 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
{
"name": "a11y-bookmarklets",
"version": "1.0.0",
"description": "Useful bookmarklets to for accesibility testing",
"main": "entry/test.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint-js": "eslint --fix --no-error-on-unmatched-pattern src/*.js "
},
"repository": {
"type": "git",
"url": "git+https://github.com/tollwerk/a11y-bookmarklets.git"
},
"author": "Joschi Kuphal <joschi@tollwerk.de>",
"license": "ISC",
"bugs": {
"url": "https://github.com/tollwerk/a11y-bookmarklets/issues"
},
"homepage": "https://github.com/tollwerk/a11y-bookmarklets#readme",
"devDependencies": {
"dom-accessibility-api": "^0.5.14",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"gulp": "^4.0.2",
"gulp-inject": "^5.0.5",
"gulp-rename": "^2.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"typescript": "^4.7.3",
"vinyl-named": "^1.1.0",
"webpack-stream": "^7.0.0"
},
"dependencies": {
"gulp-tap": "^2.0.0"
}
}