-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "internaut",
"version": "2.1.0",
"description": "Minimalist static site generator in Node.js",
"repository": "stockhuman/internaut",
"keywords": [
"static site generator"
],
"author": "Michael Hemingway (https://michaelhemingway.com)",
"license": "MIT",
"scripts": {
"lint": "eslint \"./{lib,test}/**/*.js\"",
"start": "node ./lib/cli.js start",
"build": "cross-env NODE_ENV=production node ./lib/cli.js build --cleanUrls=false",
"format": "prettier --write ."
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/runtime": "^7.24.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"cross-env": "^7.0.3",
"ejs": "^3.1.9",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"fast-glob": "^3.3.2",
"front-matter": "^4.0.2",
"fs-extra": "^11.2.0",
"live-server": "^1.1.0",
"lodash.debounce": "^4.0.8",
"marked": "^12.0.1",
"meow": "^13.2.0",
"prettier": "^2.8.8",
"sass": "^1.72.0",
"sharp": "^0.33.2",
"terser": "^5.29.2"
},
"type": "module"
}