-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 953 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 953 Bytes
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
{
"name": "static-dodo",
"version": "1.1.0",
"description": "A simple Static Site Generator CLI",
"main": "static-dodo.js",
"type": "module",
"bin": {
"static-dodo": "static-dodo.js"
},
"keywords": [
"cli"
],
"preferGlobal": true,
"author": "Francesco Menghi",
"license": "MIT",
"scripts": {
"prettier": "npx prettier --write .",
"prettier-check": "npx prettier --check .",
"eslint": "npx eslint --config eslint.config.js",
"eslint-fix": "npx eslint --config eslint.config.js --fix",
"prepare": "husky",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"highlight.js": "^11.9.0",
"markdown-it": "^14.1.0",
"minimist": "^1.2.8"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^9.6.0",
"globals": "^15.7.0",
"husky": "^9.0.11",
"prettier": "^3.3.2",
"vitest": "^2.0.5"
}
}