-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
35 lines (35 loc) · 979 Bytes
/
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
{
"name": "a11y-css-reset",
"version": "1.2.0",
"description": "Global CSS rules to improve accessibility in your site and make your life easier",
"main": "index.js",
"scripts": {
"combine": "cat reset.css a11y.css > combo.css",
"minify": "minify combo.css > combo.min.css;minify a11y.css > a11y.min.css;minify reset.css > reset.min.css",
"prepublishOnly": "npm run combine && npm run minify",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mike-engel/a11y-css-reset.git"
},
"keywords": [
"a11y",
"css",
"reset",
"import",
"accessibility"
],
"files": [
"*.css"
],
"author": "Mike Engel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mike-engel/a11y-css-reset/issues"
},
"homepage": "https://github.com/mike-engel/a11y-css-reset#readme",
"devDependencies": {
"minify": "^4.1.2"
}
}