This repository was archived by the owner on Nov 30, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.17 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.17 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "rafting-demo",
"version": "1.1.0",
"private": true,
"description": "A quick rafting demo",
"config": {
"serve": {
"domain": "localhost",
"path": "./",
"port": 8000
},
"dir": {
"css": "css/",
"js": "js/",
"img": "img/",
"html": "*.html **/*.html"
},
"icons": "./icons.csv"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shgysk8zer0/improved-octo-succotash.git"
},
"keywords": [
"static",
"template",
"ecmascript",
"javascript",
"css",
"svg",
"icons"
],
"author": "Chris Zuber <shgysk8zer0@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shgysk8zer0/improved-octo-succotash/issues"
},
"homepage": "https://zealous-cray-ab03c3.netlify.com/",
"scripts": {
"test": "npm run lint:js && npm run lint:css && npm run lint:html",
"start": "npm run netlify",
"preinstall": "npm run git:submodules",
"postinstall": "npm run build",
"git:fetch": "git fetch --prune --tags",
"git:submodules": "if [ -f '.gitmodules' ]; then git submodule update --init --recursive; fi",
"lint:css": "if [ -f '.stylelintrc.json' ]; then stylelint ${npm_package_config_dir_css}; fi",
"lint:html": "if [ -f '.htmlhintrc' ]; then htmlhint ${npm_package_config_dir_html}; fi",
"lint:js": "if [ -f '.eslintrc.json' ]; then eslint .; fi",
"fix:css": "if [ -f './stylelintrc.json' ]; then stylelint ${npm_package_config_dir_css} --fix; fi",
"fix:js": "if [ -f '.eslintrc.json' ]; then eslint. --fix; fi",
"build": "npm run build:icons && npm run build:css && npm run build:js",
"build:css": "if [ -f 'postcss.config.js' ]; then postcss ${npm_package_config_dir_css}index.css -o ${npm_package_config_dir_css}index.min.css; fi",
"build:icons": "if [ -f ${npm_package_config_icons} ]; then $(svg-sprite-generate -c ${npm_package_config_icons} -o 'img/icons.svg'); fi",
"build:js": "if [ -f 'rollup.config.js' ]; then rollup --config; fi",
"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"
},
"dependencies": {
"svg-sprite-generator": "0.0.7"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cssnano": "^4.1.10",
"cssnano-preset-default": "^4.0.7",
"eslint": "^7.9.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-babel": "^5.3.1",
"htmlhint": "^0.14.1",
"netlify-cli": "^2.36.0",
"postcss": "^7.0.32",
"postcss-cli": "^7.1.2",
"postcss-cssnext": "^3.1.0",
"postcss-custom-properties": "^9.1.1",
"postcss-discard-comments": "^4.0.2",
"postcss-import": "^12.0.1",
"postcss-import-url": "^5.1.0",
"postcss-media-minmax": "^4.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^8.0.0",
"rollup": "^2.26.11",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-url-resolve": "^0.1.1",
"stylelint": "^13.7.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-standard": "^20.0.0",
"svgo": "^1.3.2"
}
}