-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "allegretto",
"version": "2.0.3",
"description": "A fast and lively CSS framework",
"main": "dist/retto.min.css",
"scripts": {
"start": "browser-sync start --server --directory --files '**/*.css' '**/*.html'",
"build": "rm -r dist/ && yarn postcss && cross-env NODE_ENV=production yarn postcss --ext .min.css && gzip -c dist/retto.min.css | wc -c",
"postcss": "postcss ./src/retto.css -d dist/",
"watch": "cross-env NODE_ENV=development && yarn postcss -w",
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "harp server docs --port 5000"
},
"keywords": [
"css",
"minimal",
"web"
],
"author": "Al Romano",
"license": "MIT",
"homepage": "https://allegretto.herokuapp.com/",
"repository": {
"type": "git",
"url": "git@github.com:VirtuallyCreative/allegretto.git"
},
"bugs": {
"url": "https://github.com/VirtuallyCreative/allegretto/issues/new"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"autoprefixer": "^9.7.4",
"browser-sync": "^2.26.7",
"cross-env": "^7.0.0",
"cssnano": "^4.1.10",
"ejs-lint": "^1.0.1",
"postcss-cli": "^7.1.0",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0"
},
"files": [
"src/",
"dist/",
"README.md"
],
"dependencies": {
"harp": "^0.40.3"
},
"browserslist": [
"defaults"
]
}