-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.94 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.94 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "ku-progress-bar",
"version": "0.6.1",
"description": "cli progress bar",
"main": "dist/index.js",
"homepage": "https://github.com/kos984/ku-cli-progress",
"repository": {
"type": "git",
"url": "git+https://github.com/kos984/ku-cli-progress.git"
},
"keywords": [
"progress-bar",
"progress bar",
"bar",
"progress",
"progressbar",
"multibarbar",
"console",
"cli",
"tty",
"terminal"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "rimraf '{.eslintcache}' && eslint src --quiet",
"lint:ci": "npx eslint src -f json -o reports/eslint-report.json",
"prepare": "npm run husky:install && npm run build",
"husky:install": "husky install",
"prelint": "npx eslint-config-prettier .eslintrc.cjs"
},
"author": "Kostiantyn Upir",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"chalk": "^4.1.2",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": "\\.spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"coverageReporters": [
"json",
"lcov",
"text",
"clover",
"html"
],
"testEnvironment": "node"
},
"lint-staged": {
"src/**/*.ts": "npm run lint -- --fix",
"*.js": "eslint --cache --fix",
"*.ts": "prettier --write"
}
}