-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.93 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "typescript-helper-functions",
"version": "1.0.158",
"description": "Typescript Helper Functions",
"repository": {
"type": "git",
"url": "https://github.com/kbrashears5/typescript-helper-functions.git"
},
"bugs": {
"url": "https://github.com/kbrashears5/typescript-helper-functions/issues"
},
"homepage": "https://github.com/kbrashears5/typescript-helper-functions#readme",
"author": "Kevin Brashears",
"keywords": [
"helper",
"helpers",
"functions",
"helper-functions",
"javascript",
"typescript"
],
"main": "lib/index.js",
"license": "MIT",
"dependencies": {
"typescript-ilogger": "~1.0.113"
},
"devDependencies": {
"@types/jest": "~28.1.0",
"@types/node": "~17.0.39",
"@typescript-eslint/eslint-plugin": "~5.27.0",
"@typescript-eslint/parser": "~5.27.0",
"eslint": "~8.17.0",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-jest": "~26.4.6",
"eslint-plugin-prettier": "~4.0.0",
"jest": "~28.1.0",
"jest-junit": "~13.2.0",
"node-git-hooks": "~1.0.6",
"npm-run-all": "~4.1.5",
"prettier": "~2.6.2",
"rimraf": "~3.0.2",
"ts-jest": "~28.0.4",
"typescript": "~4.7.3"
},
"files": [
"lib/**"
],
"jest": {
"preset": "ts-jest",
"reporters": [
"default",
"jest-junit"
],
"rootDir": "src",
"testEnvironment": "node",
"coverageReporters": [
"cobertura"
]
},
"scripts": {
"build": "tsc",
"clean": "rimraf ./lib",
"format": "prettier --write .",
"lint": "eslint -c .eslintrc.yml \"*/**\"",
"prebuild": "npm run clean && npm run format && npm run lint",
"prep": "npm run update:npm-run-all && npm run update && node-git-hooks",
"test": "jest --ci --coverage",
"update:eslint-config-prettier": "npm i eslint-config-prettier@latest --save-dev",
"update:eslint-plugin-jest": "npm i eslint-plugin-jest@latest --save-dev",
"update:eslint-plugin-prettier": "npm i eslint-plugin-prettier@latest --save-dev",
"update:eslint": "npm i eslint@latest --save-dev",
"update:jest-junit": "npm i jest-junit@latest --save-dev",
"update:jest": "npm i jest@latest --save-dev",
"update:node-git-hooks": "npm i node-git-hooks@latest --save-dev",
"update:npm-run-all": "npm i npm-run-all@latest --save-dev",
"update:prettier": "npm i prettier@latest --save-dev",
"update:rimraf": "npm i rimraf@latest --save-dev",
"update:ts-jest": "npm i ts-jest@latest --save-dev",
"update:types-jest": "npm i @types/jest@latest --save-dev",
"update:types-node": "npm i @types/node@latest --save-dev",
"update:typescript-eslint-parser": "npm i @typescript-eslint/parser@latest --save-dev",
"update:typescript-eslint-plugin": "npm i @typescript-eslint/eslint-plugin@latest --save-dev",
"update:typescript-ilogger": "npm i typescript-ilogger@latest",
"update:typescript": "npm i typescript@latest --save-dev",
"update": "run-s update:*"
}
}