-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.42 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
{
"name": "ssgulnur",
"version": "1.0.3",
"description": "SSGulnur is a command-line tool to generate static HTML web page from a provided file or folder.",
"main": "./src/index.js",
"bin": {
"ssgulnur": "./src/index.js"
},
"scripts": {
"test": "jest --",
"test:watch": "jest --watch --",
"coverage": "jest --collect-coverage --",
"lint": "eslint --config .eslintrc.js src/**",
"prettier": "prettier --write \"./**/*.{md,jsx,json,html,css,js,yml,ts,tsx}\"",
"prettier-check": "prettier --check \"./**/*.{md,jsx,json,html,css,js,yml,ts,tsx}\"",
"prepare": "husky install",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gulyapulya/SSGulnur.git"
},
"keywords": [],
"author": "Gulnur Baimukhambetova <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gulyapulya/SSGulnur/issues"
},
"homepage": "https://github.com/gulyapulya/SSGulnur#readme",
"devDependencies": {
"eslint": "^8.24.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"np": "^7.6.2",
"prettier": "2.7.1"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.4.0",
"n-readlines": "^1.0.1",
"showdown": "^2.1.0"
},
"lint-staged": {
"*.js": "eslint --config .eslintrc.js --cache --fix",
"*.{js,css,md}": "prettier --write \"./**/*.{md,jsx,json,html,css,js,yml,ts,tsx}\""
}
}