-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.18 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "boltstatic",
"version": "0.1.0",
"description": "A fast and reliable Node.js-based static site generator inspired by GoHugo.",
"main": "bin/boltstatic.js",
"bin": {
"boltstatic": "./bin/boltstatic.js"
},
"scripts": {
"build": "node src/core/boltBuild.js",
"serve": "node src/core/boltServe.js",
"start": "npm run serve",
"test": "jest",
"lint": "eslint src/**/*.js",
"format": "prettier --write src/**/*.js"
},
"repository": {
"type": "git",
"url": "[email protected]:karandaid/boltstatic.git"
},
"keywords": [
"static-site-generator",
"nodejs",
"boltstatic",
"gohugo"
],
"author": "Your Name",
"license": "MIT",
"bugs": {
"url": "https://github.com/karandaid/boltstatic/issues"
},
"homepage": "https://github.com/karandaid/boltstatic#readme",
"dependencies": {
"chokidar": "^4.0.0",
"handlebars": "^4.7.7",
"inquirer": "^8.2.0",
"markdown-it": "^13.0.1",
"minimist": "^1.2.8",
"yaml": "^2.1.3"
},
"devDependencies": {
"browser-sync": "^2.29.3",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"prettier": "^2.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
}
}