Showing
- index.test.ts 334 additions, 0 deletionsindex.test.ts
- index.ts 152 additions, 0 deletionsindex.ts
- jest.config.js 15 additions, 0 deletionsjest.config.js
- package-lock.json 2365 additions, 7474 deletionspackage-lock.json
- package.json 7 additions, 18 deletionspackage.json
- tsconfig.json 13 additions, 0 deletionstsconfig.json
index.test.ts
0 → 100644
index.ts
0 → 100644
jest.config.js
0 → 100644
package-lock.json
100755 → 100644
This diff is collapsed.
{ | ||
"name": "@libs/config", | ||
"version": "1.13.6", | ||
"version": "1.14.0", | ||
"description": "Simple Config with ENV Support", | ||
"main": "index.js", | ||
"main": "index.ts", | ||
"scripts": { | ||
"test": "jest", | ||
"test": "jest --config jest.config.js", | ||
"test:mutation": "stryker run" | ||
}, | ||
"keywords": [ | ||
... | ... | @@ -13,28 +13,17 @@ |
], | ||
"author": "Dominik Sigmund <dominik.sigmund@br.de>", | ||
"license": "ISC", | ||
"dependencies": { | ||
"lodash.merge": "^4.6.2" | ||
}, | ||
"devDependencies": { | ||
"@stryker-mutator/core": "^8.2.6", | ||
"@stryker-mutator/javascript-mutator": "^4.0.0", | ||
"@stryker-mutator/jest-runner": "^8.2.6", | ||
"@stryker-mutator/typescript": "^4.0.0", | ||
"jest": "^29.7.0" | ||
"@types/jest": "^29.5.14", | ||
"jest": "^29.7.0", | ||
"ts-jest": "^29.2.5", | ||
"typescript": "^5.7.3" | ||
}, | ||
"publishConfig": { | ||
"@libs:registry": "https://gitlab.ard.de/api/v4/projects/919/packages/npm/" | ||
}, | ||
"jest": { | ||
"collectCoverage": true, | ||
"coverageReporters": [ | ||
"json", | ||
"lcov", | ||
"text", | ||
"clover", | ||
"html" | ||
], | ||
"coverageDirectory": "docs/coverage" | ||
} | ||
} |
tsconfig.json
0 → 100644