-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.31 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
{
"name": "kettlefish",
"version": "0.1.1",
"description": "A Node.JS based boilerplate for no fuss static HTML websites",
"main": "kettlefish.js",
"repository": {
"type": "git",
"url": "https://github.com/paulbrzeski/kettlefish"
},
"keywords": [
"boilerplate"
],
"author": "Paul Brzeski",
"license": "MIT",
"bugs": {
"url": "https://github.com/paulbrzeski/kettlefish/issues"
},
"dependencies": {
"axis": "^1.0.0",
"chokidar": "^3.5.1",
"cross-spawn": "^7.0.3",
"express": "^4.17.1",
"jstransformer-markdown": "^1.2.1",
"npm": "^7.6.0",
"prompt": "^1.1.0",
"pug": "^3.0.2",
"pug-cli": "^1.0.0-alpha6",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-uglify": "^6.0.4",
"socket.io": "^3.1.2",
"stylus": "^0.54.8",
"vue": "^2.6.12"
},
"scripts": {
"css": "stylus src/styles -o docs",
"pug": "pug src/pages -P -o ./docs -b .",
"rollup": "rollup -c",
"dev": "http-server -p 80 -c-1 ./docs",
"preinstall": "npm i -g pug-cli stylus http-server rollup",
"gs": "for i in ../*; do (cd $i && (echo $i; git status)); done",
"gsw": "for /D %i in (../*) do cd ../%i && (git remote get-url origin && git status)"
},
"bin": {
"kettlefish": "./bin/kettlefish",
"kf": "./bin/kettlefish"
},
"preferGlobal": "true"
}