- Removed all gulp packages - Replaced gulp tasks with npm scripts - Some tasks are still missing - Kept gulp files for reference - Fixed media query styles
53 lines
1.6 KiB
JSON
53 lines
1.6 KiB
JSON
{
|
|
"name": "hippie",
|
|
"version": "0.4.2",
|
|
"description": "Hippie interweaves preeminent personal interface elements",
|
|
"keywords": [
|
|
"web",
|
|
"frontend",
|
|
"framework",
|
|
"sass",
|
|
"css",
|
|
"html",
|
|
"js"
|
|
],
|
|
"homepage": "https://github.com/sthag/hippie#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/sthag/hippie/issues",
|
|
"email": "klarsichtweise@gmail.com"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Stephan Hagedorn",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sthag/hippie.git"
|
|
},
|
|
"scripts": {
|
|
"hello": "echo -n \"This is \" && node -p \"process.env.npm_package_name\" | tr '[:lower:]' '[:upper:]'",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"preversion": "npm test",
|
|
"version": "gulp build && git add -A dist",
|
|
"postversion": "git push && git push --tags",
|
|
"clean": "npm run clean:build & npm run clean:deploy & npm run clean:report & npm run clean:test",
|
|
"clean:build": "rm -rf build/*",
|
|
"clean:deploy": "rm -rf deploy/*",
|
|
"clean:report": "rm -rf report/*",
|
|
"clean:test": "rm -rf test/*",
|
|
"serve": "browser-sync start --no-open --index 'demo.html' --server 'build'",
|
|
"serve:watch": "browser-sync start --open false --files 'build' --server 'build'",
|
|
"style": "npm run style:compile",
|
|
"style:compile": "sass source/style:build/css --load-path=vendor",
|
|
"style:prefix": "",
|
|
"style:watch": ""
|
|
},
|
|
"config": {
|
|
"port": "3000"
|
|
},
|
|
"devDependencies": {
|
|
"browser-sync": "^2.27.10",
|
|
"jshint": "~2",
|
|
"jshint-stylish": "^2.2.1",
|
|
"sass": "^1.54.0"
|
|
},
|
|
"private": true
|
|
}
|