-
- Downloads
first doing on typescript
parent
f798690c
Branches 3-rewrite-in-typescript
No related tags found
This commit is part of merge request !9. Comments created here will be created in the context of that merge request.
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
Source diff could not be displayed: it is too large. Options to address this: view the blob.
{ | { | ||
"name": "@libs/config", | "name": "@libs/config", | ||
"version": "1.13.6", | "version": "1.14.0", | ||
"description": "Simple Config with ENV Support", | "description": "Simple Config with ENV Support", | ||
"main": "index.js", | "main": "index.ts", | ||
"scripts": { | "scripts": { | ||
"test": "jest", | "test": "jest --config jest.config.js", | ||
"test:mutation": "stryker run" | "test:mutation": "stryker run" | ||
}, | }, | ||
"keywords": [ | "keywords": [ | ||
... | @@ -13,28 +13,17 @@ | ... | @@ -13,28 +13,17 @@ |
], | ], | ||
"author": "Dominik Sigmund <dominik.sigmund@br.de>", | "author": "Dominik Sigmund <dominik.sigmund@br.de>", | ||
"license": "ISC", | "license": "ISC", | ||
"dependencies": { | |||
"lodash.merge": "^4.6.2" | |||
}, | |||
"devDependencies": { | "devDependencies": { | ||
"@stryker-mutator/core": "^8.2.6", | "@stryker-mutator/core": "^8.2.6", | ||
"@stryker-mutator/javascript-mutator": "^4.0.0", | "@stryker-mutator/javascript-mutator": "^4.0.0", | ||
"@stryker-mutator/jest-runner": "^8.2.6", | "@stryker-mutator/jest-runner": "^8.2.6", | ||
"@stryker-mutator/typescript": "^4.0.0", | "@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": { | "publishConfig": { | ||
"@libs:registry": "https://gitlab.ard.de/api/v4/projects/919/packages/npm/" | "@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
Please register or sign in to comment