-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
26 lines (26 loc) · 1.12 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
{
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"copy": "ncp node_modules/uikit/src/scss/ _sass/uikit/ && ncp node_modules/system-font-css/_system-font.scss _sass/_system-font.scss",
"lint": "jshint assets/js/custom.js",
"uglify": "uglifyjs node_modules/uikit/dist/js/uikit.js assets/js/custom-icons.js node_modules/simple-jekyll-search/dest/simple-jekyll-search.js assets/js/custom.js -m -c -o assets/js/main.js",
"concat": "uglifyjs node_modules/uikit/dist/js/uikit.js assets/js/custom-icons.js node_modules/simple-jekyll-search/dest/simple-jekyll-search.js assets/js/custom.js -b -o assets/js/main.js",
"dev": "yarn lint && yarn concat",
"prebuild": "rm -rf public",
"build": "yarn lint && yarn uglify && bundle exec jekyll build",
"watch": "watch 'yarn dev' assets/js/",
"postinstall": "yarn copy && yarn concat"
},
"dependencies": {
"simple-jekyll-search": "^1.7.2",
"system-font-css": "^2.0.1",
"uikit": "^3.0.3"
},
"devDependencies": {
"jshint": "^2.10.2",
"ncp": "latest",
"uglify-js": "^3.4.10",
"watch": "^1.0.2"
}
}