forked from tuanthanh2067/cv-ssg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "cv-ssg",
"version": "0.1.0",
"description": "",
"main": "bin/cv-ssg.js",
"scripts": {
"test": "jest --",
"test:watch": "jest--watch--",
"coverage": "jest --collectCoverage --",
"pre-commit": "pretty-quick --staged",
"prepare": "husky install",
"eslint": "eslint --config .eslintrc.js",
"eslint-fix": "eslint --config .eslintrc.js --fix",
"lint": "npm run eslint",
"prettier": "prettier --write \"./**/*.{md,jsx,json,html,css,js,yml}\"",
"prettier-check": "prettier --check \"./**/*.{md,jsx,json,html,css,js,yml}\""
},
"bin": {
"cv-ssg": "./bin/cv-ssg.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tuanthanh2067/cv-ssg.git"
},
"author": "Tuan Thanh Tan",
"license": "MIT",
"bugs": {
"url": "https://github.com/tuanthanh2067/cv-ssg/issues"
},
"homepage": "https://github.com/tuanthanh2067/cv-ssg#readme",
"dependencies": {
"chalk": "^4.1.2",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"node-dir": "^0.1.17",
"pretty": "^2.0.0",
"showdown": "^1.9.1",
"yargs": "^17.2.1"
},
"devDependencies": {
"eslint": "^8.1.0",
"husky": "^7.0.0",
"jest": "^27.3.1",
"prettier": "2.4.1",
"pretty-quick": "^3.1.1"
}
}