-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.32 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "elephantropolis",
"version": "1.0.0",
"description": "A placeholder website",
"main": "index.js",
"scripts": {
"test": "npm run lint",
"start": "npm run netlify",
"preinstall": "npm run git:submodules",
"preversion": "npm test",
"create:lock": "npm i --package-lock-only --ignore-scripts",
"git:fetch": "git fetch --prune --tags",
"git:submodules": "if [ -f '.gitmodules' ]; then git submodule update --init --recursive; fi",
"lint": "npm run lint:js && npm run lint:css && npm run lint:html",
"lint:js": "if [ -f .eslintrc.json ]; then eslint .; fi",
"lint:css": "if [ -f .stylelintrc.json ]; then stylelint './**.css'; fi",
"lint:html": "if [ -f .htmlhintrc ]; then htmlhint ${npm_package_config_dir_html}; fi",
"fix:css": "stylelint './**.css' --fix",
"fix:js": "eslint. --fix",
"build": "npm run build:icons && npm run build:css && npm run build:js",
"build:site": "JEKYLL_ENV=production bundle exec jekyll build",
"build:site:dev": "bundle exec jekyll build --drafts --unpublished --future --profile --trace --strict_front_matter",
"serve:production": "npm run build && JEKYLL_ENV=production bundle exec jekyll serve",
"serve:dev": "bundle exec jekyll serve --drafts --unpublished --future --profile --trace --strict_front_matter",
"netlify": "if [ -f '.netlify/state.json' ]; then npm run netlify:live; else npm run netlify:serve; fi",
"netlify:deploy": "netlify deploy",
"netlify:serve": "netlify dev",
"netlify:live": "netlify dev --live",
"netlify:link": "netlify link",
"version:bump": "npm run version:bump:patch",
"version:bump:patch": "npm version --no-git-tag-version patch",
"version:bump:minor": "npm version --no-git-tag-version minor",
"version:bump:major": "npm version --no-git-tag-version major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kernvalley/elephantopolis.git"
},
"author": "Chris Zuber <shgysk8zer0@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kernvalley/elephantopolis/issues"
},
"homepage": "https://github.com/kernvalley/elephantopolis#readme",
"devDependencies": {
"eslint": "^8.40.0",
"htmlhint": "^1.1.4",
"stylelint": "^15.6.2"
},
"dependencies": {
"netlify-cli": "^15.1.1",
"svg-sprite-generator": "^0.0.7"
}
}