forked from alexsam29/ssg-cli-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.4 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": "ssg-cli-tool",
"version": "1.0.4",
"description": "A command-line interface SSG tool used for generating a complete HTML web site from raw data and files.",
"main": "bin/app.js",
"scripts": {
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexsam29/ssg-cli-tool.git"
},
"author": "Alexander Samaniego",
"license": "MIT",
"bin": {
"ssg": "./bin/app.js"
},
"bugs": {
"url": "https://github.com/alexsam29/ssg-cli-tool/issues"
},
"homepage": "https://github.com/alexsam29/ssg-cli-tool#readme",
"dependencies": {
"chalk": "2.4",
"create-html": "^4.1.0",
"markdown-it": "^13.0.1",
"markdown-it-abbr": "^1.0.4",
"markdown-it-deflist": "^2.1.0",
"markdown-it-emoji": "^2.0.2",
"markdown-it-footnote": "^3.0.3",
"markdown-it-ins": "^3.0.1",
"markdown-it-mark": "^3.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"yargs": "13.2"
},
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.4.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.1",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}