-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.73 KB
/
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
36
{
"name": "pokedextracker",
"version": "1.1.3",
"description": "Ghost Theme for the PokédexTracker Blog",
"scripts": {
"bundle": "zip -r pokedextracker-$(cat package.json | grep '\"version\"' | cut -d '\"' -f4).zip theme",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm run setup:package",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm run setup:package",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm run setup:package",
"setup": "npm run setup:ghost && npm run setup:link && npm run setup:package",
"setup:link": "rm -rf ghost/content/themes/pokedextracker && ln -sf $(pwd)/theme $(pwd)/ghost/content/themes/pokedextracker",
"setup:ghost": "rm -rf ghost && ghost install 5.46.0 --local --dir ghost --no-start --no-enable --no-prompt",
"setup:package": "cd theme && ln -f ../package.json .",
"start": "ghost run --dir ghost --development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pokedextracker/ghost-theme.git"
},
"keywords": [
"ghost-theme"
],
"author": {
"name": "PokedexTracker",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pokedextracker/pokedextracker.com/issues"
},
"homepage": "https://github.com/pokedextracker/ghost-theme#readme",
"devDependencies": {
"generate-changelog": "^1.0.2",
"ghost-cli": "^1.24.0"
}
}