-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.16 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.16 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
35
36
{
"name": "commit-2019",
"version": "0.0.1",
"description": "The contents of 2020.commit-conf.com",
"repository": {
"type": "git",
"url": "git+https://github.com/commit-conf/2020.git"
},
"authors": [
"Carlos Coloma <ccescribano@gmail.com>",
"Nacho Coloma <icoloma@gmail.com>"
],
"license": "Apache-2.0",
"devDependencies": {
"autoprefixer": "^9.7.4",
"concurrently": "^5.0.2",
"js-yaml": "^3.13.1",
"postcss-cli": "^7.1.0",
"sass": "^1.25.0",
"sharp": "^0.23.4",
"sharp-cli": "^1.13.1",
"svgo": "^1.3.2"
},
"scripts": {
"compile:jobs": "bin/create-job",
"test": "npm build && concurrently --kill-others --success first \"hugo server\" \"blc http://localhost:1313 -ro\"",
"postversion": "git push && git push --tags",
"watch:jobs": "npm run compile:jobs && inotifywait -m -r -e modify,create,delete ./src/jobs/ | while read NEWFILE; do npm run compile:jobs; done",
"watch": "concurrently \"npm run watch:jobs\" \"hugo server --log --bind=0.0.0.0\" \"xdg-open http://localhost:1313/\"",
"build": "npm run compile:jobs && hugo"
},
"browserslist": [
"last 2 version",
"> 5%"
]
}