-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "olpeh.github.io",
"version": "1.0.0",
"description": "Personal blog – olavihaapala.fi",
"scripts": {
"build": "bundle exec jekyll build",
"start": "bundle exec jekyll serve",
"dev": "bundle exec jekyll serve --future",
"deploy": "npm run build && npm run dat",
"dat": "npm run build && rimraf ~/Sites/olpeh.github.io && cp -r _site/ ~/Sites/olpeh.github.io",
"test": "jest",
"format": "prettier --write '{,!(node_modules|_site|js)/**/}*.{ts,js,css,md,html}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olpeh/olpeh.github.io.git"
},
"author": "Olavi Haapala",
"license": "MIT",
"bugs": {
"url": "https://github.com/olpeh/olpeh.github.io/issues"
},
"homepage": "https://github.com/olpeh/olpeh.github.io#readme",
"devDependencies": {
"husky": "1.3.1",
"jest": "26.6.3",
"lint-staged": "8.1.3",
"prettier": "2.2.1",
"rimraf": "2.6.2",
"visual-regression": "3.0.0"
},
"lint-staged": {
"linters": {
"*.{ts,js,css,md,html}": [
"prettier --write",
"git add"
]
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}