-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "hpw",
"version": "0.2.4",
"author": "Timur Shemsedinov <[email protected]>",
"description": "Labs Auto Checker",
"license": "MIT",
"keywords": [
"javascript",
"programming",
"node.js"
],
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/HowProgrammingWorks/Labs.git"
},
"bugs": {
"url": "https://github.com/HowProgrammingWorks/Labs/issues",
"email": "[email protected]"
},
"funding": "https://www.patreon.com/tshemsedinov",
"main": "./bin/hpw.js",
"bin": {
"hpw": "bin/hpw.js"
},
"scripts": {
"test": "npm run lint && node ./bin/hpw.js",
"types": "tsc -p tsconfig.json",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\"",
"fix": "eslint . --fix && prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\""
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"concolor": "^1.0.6"
},
"devDependencies": {
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3"
}
}