-
-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
35 lines (35 loc) · 921 Bytes
/
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
{
"name": "lone-wolf-theme",
"version": "1.2.0",
"description": "A simple bootstrap based jekyll theme.",
"repository": {
"type": "git",
"url": "https://github.com/manid2/lone-wolf-theme.git"
},
"keywords": [
"jekyll",
"theme",
"bootstrap",
"github-pages"
],
"author": "Mani Kumar",
"license": "MIT",
"bugs": {
"url": "https://github.com/manid2/lone-wolf-theme/issues"
},
"homepage": "https://manid2.github.io/lone-wolf-theme/",
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"onchange": "^5.1.3",
"uglify-js": "^3.4.9"
},
"scripts": {
"uglify": "uglifyjs assets/js/_main.js -c -m -o assets/js/main.min.js",
"add-banner": "node banner.js",
"watch:js": "onchange \"assets/js/**/*.js\" -e \"assets/js/main.min.js\" -- npm run build:js",
"build:js": "npm run uglify && npm run add-banner"
}
}