feather/package.json
2017-05-13 02:36:11 -07:00

23 lines
663 B
JSON

{
"name": "feather",
"version": "2.0.0-beta",
"author": "Cole Bemis <cole@colebemis.com> (http://colebemis.com)",
"repository": {
"type": "git",
"url": "https://github.com/colebemis/feather.git"
},
"scripts": {
"start": "parallelshell 'jekyll serve' 'npm run watch'",
"watch": "onchange 'icons/**/*' -v -i -- npm run make",
"build": "npm run make && jekyll build",
"make": "npm run make:manifest && npm run make:zip",
"make:manifest": "./bin/make-manifest.sh > manifest.json",
"make:zip": "./bin/make-zip.sh"
},
"license": "MIT",
"devDependencies": {
"onchange": "^3.2.1",
"parallelshell": "^2.0.0"
}
}