LoveIt/package.json

41 lines
1.1 KiB
JSON
Raw Normal View History

2020-02-16 17:41:08 +01:00
{
"name": "loveit-src",
"version": "0.2.0",
2020-02-16 17:41:08 +01:00
"description": "LoveIt theme source file",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-preset-minify": "^0.5.1",
"minimist": ">=1.2.2",
2020-02-16 17:41:08 +01:00
"husky": "^4.2.3"
},
"scripts": {
"build": "npx babel src --out-file assets/js/theme.min.js --source-maps && hugo -v --source=exampleSite --themesDir=../.. -D --gc",
2020-03-10 17:50:06 +01:00
"start": "npm run build && hugo server --source=exampleSite --themesDir=../.. --disableFastRender",
"copy": "rm -rf resources && cp -rf exampleSite/resources resources"
2020-02-16 17:41:08 +01:00
},
"husky": {
"hooks": {
2020-02-16 19:32:52 +01:00
"pre-commit": "npm run build && npm run copy && git add .",
"pre-push": "npm run build && npm run copy && git add ."
2020-02-16 17:41:08 +01:00
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/dillonzq/LoveIt.git"
},
"keywords": [
"hugo",
"theme"
],
"author": "Dillon",
"license": "MIT",
"bugs": {
"url": "https://github.com/dillonzq/LoveIt/issues"
},
"homepage": "https://github.com/dillonzq/LoveIt#readme"
}