-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.2 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.2 KB
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": "commit-2019",
"version": "1.0.0",
"description": "The contents of 2019.commit-conf.com",
"repository": {
"type": "git",
"url": "git+https://github.com/ccoloma/commit-2019.git"
},
"authors": [
"Carlos Coloma <ccescribano@gmail.com>",
"Nacho Coloma <icoloma@gmail.com>"
],
"license": "Apache-2.0",
"devDependencies": {
"autoprefixer": "^9.6.1",
"broken-link-checker": "^0.7.8",
"concurrently": "^3.5.1",
"node-sass": "^4.12.0",
"postcss-cli": "^6.1.3",
"svgo": "^1.2.2"
},
"browserslist": [
"last 2 version",
"not dead"
],
"scripts": {
"compile:css": "node-sass src/scss/main.scss --output-style compressed | postcss -o static/css/main.css",
"test": "npm build && concurrently --kill-others --success first \"hugo server\" \"blc http://localhost:1313 -ro\"",
"postversion": "git push && git push --tags",
"watch:css": "npm run compile:css && inotifywait -m -r -e modify,create,delete ./src/scss/ | while read NEWFILE; do npm run compile:css; done",
"watch": "concurrently \"npm run watch:css\" \"hugo server --log --bind=0.0.0.0\" \"xdg-open http://localhost:1313/\"",
"build": "npm run compile:css && hugo -d _build"
}
}