-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.55 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "hostic",
"version": "0.15.11",
"description": "Yet another static web site generator",
"main": "src/index.js",
"scripts": {
"test": "jest --no-cache",
"prepublish": "npm test",
"format": "prettier --write ."
},
"license": "EUPL-1.2",
"jest": {
"transform": {
"^.+\\.jsx?$": "./src/jest-transform.js"
},
"testEnvironment": "node",
"testPathIgnorePatterns": [
"node_modules/",
"dist/"
]
},
"bin": {
"hostic": "src/cli.js"
},
"author": {
"name": "Dirk Holtwick",
"email": "[email protected]",
"url": "https://holtwick.de"
},
"repository": {
"type": "git",
"url": "https://github.com/holtwick/hostic.git"
},
"bugs": {
"url": "https://github.com/holtwick/hostic/issues"
},
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/holtwick"
},
"homepage": "https://github.com/holtwick/hostic",
"dependencies": {
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"debug": "^4.3.4",
"esbuild": "^0.13.13",
"express": "^4.17.3",
"highlight.js": "^11.3.1",
"image-size": "^1.0.1",
"marked": "<4.0.0",
"mime-types": "^2.1.35",
"minimatch": "^3.0.4",
"postcss": "^8.4.12",
"postcss-load-config": "^3.1.3",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"source-map-support": "^0.5.21",
"uuid": "^8.3.2",
"yaml": "^1.10.2",
"zeed-dom": "^0.9.24"
},
"devDependencies": {
"jest": "^27.5.1",
"prettier": "^2.6.1"
},
"engines": {
"node": ">=12"
}
}