-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.1 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
{
"name": "t2006",
"version": "0.4.0",
"description": "A small, low-opinionated static site generator with sections and items",
"keywords": [
"cli",
"static-site-generator",
"website-builder",
"html-generator",
"css-generator",
"web-development",
"content-management",
"site-generator",
"build-tool",
"deployment"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cinnabar-forge/t2006.git"
},
"license": "ISC",
"author": {
"name": "Timur Moziev",
"email": "timur.moziev@gmail.com",
"url": "https://timurrin.github.io"
},
"type": "module",
"main": "src/index.js",
"bin": {
"t2006": "bin/t2006.js"
},
"files": [
"bin",
"sample",
"src"
],
"scripts": {
"format": "npx prettier . --write",
"lint": "npx eslint --fix .",
"test": "mocha",
"verify": "npm run lint && npm run format && npm test"
},
"dependencies": {
"commander": "12.0.0",
"fs-extra": "11.2.0"
},
"devDependencies": {
"@cinnabar-forge/eslint-plugin": "0.3.0",
"chai": "5.1.0",
"mocha": "10.3.0"
}
}