-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
{
"name": "a11yana",
"version": "0.0.1",
"description": "",
"main": "dist/a11yana.min.css",
"style": "dist/a11yana.min.css",
"repository": {
"type": "git",
"url": "git+https://github.com/alexandersandberg/a11yana.git"
},
"keywords": [
"css",
"accessibility",
"a11y",
"minimal",
"css-framework",
"classless"
],
"author": "Alexander Sandberg <hi@alexandersandberg.com> (https://alexandersandberg.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexandersandberg/a11yana/issues"
},
"homepage": "https://github.com/alexandersandberg/a11yana#readme",
"devDependencies": {
"cssnano": "^4.1.10",
"onchange": "^6.0.0",
"postcss-cli": "^6.1.2",
"postcss-preset-env": "^6.6.0",
"rimraf": "^2.6.3",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0"
},
"scripts": {
"clean": "rimraf dist",
"stylelint": "stylelint \"src/*.css\"",
"postcss": "cat src/*.css | postcss -o dist/a11yana.css",
"minify": "postcss -u cssnano -o dist/a11yana.min.css dist/a11yana.css -m",
"build": "npm run stylelint && npm run postcss && npm run minify && echo \"📦 Finished building\"",
"dev": "npm run build -s && onchange \"src/*.css\" -- npm run build -s \">\" {{changed}} \"(\"{{event}}\")\""
},
"browserslist": [
"> 0.1%",
"not dead"
]
}