forked from ciscoo/mateo.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.01 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
{
"name": "mateo-io",
"private": true,
"version": "1.1.0",
"description": "Source of https://mateo.io",
"scripts": {
"start": "run-p serve css:watch",
"serve": "hugo serve",
"build": "hugo && yarn css:build",
"css:build": "postcss ./css/main.css -u autoprefixer postcss-import cssnano -m -d ./dist/css",
"css:watch": "postcss ./css/main.css -u autoprefixer postcss-import -m -d ./static/css -w",
"clean": "rimraf ./dist",
"test": "yarn build && yarn clean"
},
"repository": {
"type": "git",
"url": "https://github.com/ciscoo/mateo.io.git"
},
"author": "Francisco Mateo <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ciscoo/mateo.io/issues"
},
"homepage": "https://github.com/ciscoo/mateo.io#readme",
"devDependencies": {
"autoprefixer": "^9.4.2",
"cssnano": "^4.1.7",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.0.1",
"postcss-color-hex-alpha": "^5.0.2",
"postcss-import": "^12.0.1",
"rimraf": "^2.6.2"
}
}