-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
53
54
55
56
57
58
{
"name": "text-ssg",
"version": "1.0.3",
"description": "This is a Static Site Generator CLI that convert .txt and .md files into .html files",
"main": "src/index.js",
"keywords": [
"ssg",
"cli"
],
"scripts": {
"test": "jest --verbose",
"test-silent": "jest --silent --verbose",
"test-watch": "jest --verbose --watchAll",
"test-watch-silent": "jest --verbose --watchAll --silent",
"jest": "jest --verbose --",
"jest-silent": "jest --silent --verbose --",
"jest-watch": "jest --verbose --watch --",
"jest-watch-silent": "jest --silent --watch --verbose --",
"prettier": "prettier --write \"./**/*.{md,json,html,js}\"",
"prettier-check": "prettier --check \"./**/*.{md,json,html,js}\"",
"eslint": "eslint --config .eslintrc.js .",
"eslint-fix": "eslint --fix --config .eslintrc.js .",
"lint": "npm run eslint",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kevan-Y/text-ssg.git"
},
"author": "Kevan-Y",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kevan-Y/text-ssg/issues"
},
"homepage": "https://github.com/Kevan-Y/text-ssg#readme",
"bin": {
"ssg": "./src/index.js"
},
"dependencies": {
"chalk": "^4.1.2",
"clear": "^0.1.0",
"figlet": "^1.5.2",
"highlight.js": "^11.3.1",
"markdown-it": "^12.2.0",
"yargs": "^17.1.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"prettier": "2.4.1"
}
}