forked from mmistakes/jekyll-theme-skinny-bones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 970 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
{
"name": "skinny-bones-jekyll",
"version": "1.0.0",
"private": true,
"description": "A Jekyll starter site",
"author": "Michael Rose <[email protected]>",
"homepage": "http://mademistakes.com/",
"license": "The MIT License (MIT)",
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-uglify": "~0.3.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-imagemin": "~0.5.0",
"grunt-svgmin": "~0.3.1",
"grunt-imgcompress": "~0.1.1",
"grunt-newer": "^0.7.0",
"grunt-surround": "^0.1.0"
},
"scripts": {
"test": "mocha src/test/*.*",
"start": "bundle exec jekyll server --port 8080 --incremental",
"draft": "bundle exec jekyll server --port 8080 --incremental --drafts",
"watch": "watchify src/js/app.bundle.js -o assets/js/bundle.js",
"build": "browserify src/js/app.bundle.js -g uglifyify -o assets/js/bundle.js",
"add-banner": "node banner.js"
}
}