-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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": "bcr3",
"private": true,
"description": "",
"repository": "https://github.com/magicznyleszek/bcr3.git",
"author": "Leszek Pietrzak",
"license": "CC-BY-4.0",
"bugs": {
"url": "https://github.com/magicznyleszek/bcr3/issues",
"email": "leszek@magicznyleszek.xyz"
},
"homepage": "https://bcr3.magicznyleszek.xyz",
"scripts": {
"start": "npm run build",
"build": "pretty-quick && npm-run-all build-styles",
"serve": "npm-run-all build jekyll-serve",
"watch": "npm-watch build-styles",
"build-styles": "postcss _includes/main.css -o dist/bcr3.css",
"jekyll-build": "jekyll build",
"jekyll-serve": "jekyll serve --watch --baseurl ''"
},
"watch": {
"build-styles": {
"patterns": [
"_includes"
],
"extensions": "css",
"quiet": false
}
},
"devDependencies": {
"autoprefixer": "^9.1.3",
"cssnano": "^4.1.0",
"npm-run-all": "^4.1.3",
"npm-watch": "^0.3.0",
"postcss": "^7.0.2",
"postcss-cli": "^6.0.0",
"postcss-color-function": "^4.0.1",
"postcss-cssnext": "^3.1.0",
"postcss-custom-properties": "^7.0.0",
"postcss-import": "^12.0.0",
"prettier": "^1.14.2",
"pretty-quick": "^1.6.0"
}
}