forked from ffoodd/a11y.css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.83 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
{
"title": "a11y.css",
"name": "a11y.css",
"description": "This file aims to warn front-end devs about mistakes and potential accessibility failures - but it also helps to rate client-side code and to spot its weaknesses.",
"version": "4.3.0",
"style": "css/a11y-en.css",
"author": {
"name": "Gaël Poupard",
"url": "https://www.ffoodd.fr",
"email": "gael@ffoodd.fr"
},
"keywords": [
"a11y",
"accessibility",
"accessibility-checker",
"testing",
"css",
"sass",
"scss"
],
"scripts": {
"docs": "npm run docs:build && npm run docs:prepare && npm run docs:deploy",
"docs:build": "gulp docs",
"docs:prepare": "cp -r docs/Hologram/tests/* docs/build && rsync -avh docs/SassDoc/ docs/build && rm -rf docs/build/sass && rm -rf docs/build/js",
"docs:deploy": "git add docs/build && git commit -m 'Compile documentation' --allow-empty && git push origin :gh-pages && git subtree push --prefix docs/build origin gh-pages && echo 'Documentation successfully deployed'",
"prepublishOnly": "gulp translate",
"test": "gulp lints"
},
"license": "MIT",
"homepage": "https://ffoodd.github.io/a11y.css",
"repository": {
"type": "git",
"url": "https://github.com/ffoodd/a11y.css"
},
"bugs": {
"url": "https://github.com/ffoodd/a11y.css/issues"
},
"devDependencies": {
"csslint-stylish": "0.0.6",
"fs-promise": "^0.5.0",
"gulp": "~3.9.0",
"gulp-autoprefixer": "^4.0.0",
"gulp-concat": "^2.6.1",
"gulp-csslint": "latest",
"gulp-hologram": "^1.2.3",
"gulp-plumber": "latest",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.2.0",
"gulp-scss-lint": "latest",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.8",
"rootbeer": "^1.0.5",
"sassdoc": "^2.2.2",
"sassdoc-theme-alix": "^0.3.30",
"vinyl-source-stream": "^2.0.0"
}
}