-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 877 Bytes
/
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
{
"name": "mh-ssg",
"version": "1.0.7",
"description": "",
"main": "bin/index.js",
"bin": {
"mh-ssg": "./bin/index.js"
},
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"test-watchAll": "jest --watchAll",
"prettier": "prettier --write .",
"prettier-check": "prettier --check .",
"eslint": "eslint --ignore-path .eslintignore .",
"eslint-fix": "eslint --fix --ignore-path .eslintignore ."
},
"author": "Minh Hang Nguyen",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"create-html": "^4.1.0",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"highlight.js": "^11.3.1",
"jsonfile": "^6.1.0",
"markdown-it": "^12.2.0",
"yargs": "^17.1.1"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-plugin-jest": "^25.2.4",
"jest": "^27.3.1",
"prettier": "2.4.1"
}
}