-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.43 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
{
"name": "@estos/ucconfig",
"version": "0.0.7",
"description": "Environment based config support library",
"main": "index.js",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"check": "npx madge --circular --extensions js ./",
"clean": "npx rimraf dist",
"test": "npx jest",
"lint": "eslint --cache --fix -c .eslintrc.precommit.js lib/**/*.{js,ts,tsx}",
"lintclear": "del /s .eslintcache",
"relint": "run-s clean lintclear lint",
"lintnocache": "eslint --fix -c .eslintrc.precommit.js lib/**/*.{js,ts,tsx}",
"precommit": "run-p lint check test",
"prepare": "husky install"
},
"lint-staged": {
"lib/**/*.{js,ts,tsx}": [
"eslint --cache --fix -c .eslintrc.precommit.js"
]
},
"author": "estos GmbH",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"lib/*.{js,jsx}"
],
"modulePathIgnorePatterns": [
"node_modules",
"coverage"
],
"coverageDirectory": "coverage"
}
}