UNPKG

config-captain

Version:

A dependency injectable configuration object

81 lines 2.26 kB
{ "name": "config-captain", "version": "2.2.7", "description": "A dependency injectable configuration object", "main": "dist/index.js", "types": "dist/index.d.ts", "jest": { "transform": { "^.+\\.(t|j)sx?$": "@swc/jest" }, "testPathIgnorePatterns": [ "<rootDir>/__tests__/mockingFunctions/mocks.ts", "<rootDir>/old" ], "testRegex": "(/__tests__/.*|(\\.|/)(test|spec|steps))\\.(jsx?|tsx?)$", "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json", "node" ], "restoreMocks": true, "clearMocks": true, "resetMocks": true }, "files": [ "dist/**/*" ], "repository": { "type": "git", "url": "git+https://codeberg.org/hpenton/config-captain.git" }, "keywords": [ "config", "captain", "dependency", "injection" ], "author": "Henry Penton", "license": "MIT", "bugs": { "url": "https://codeberg.org/hpenton/config-captain/issues" }, "homepage": "https://codeberg.org/hpenton/config-captain", "devDependencies": { "@eslint/js": "~10.0.1", "eslint": "~10.0.0", "@stryker-mutator/core": "~9.6.1", "@stryker-mutator/jest-runner": "~9.6.1", "@stryker-mutator/typescript-checker": "~9.6.1", "@swc/core": "~1.15.30", "@swc/jest": "0.2.39", "@types/jest": "~30.0.0", "globals": "~17.5.0", "husky": "~9.1.7", "jest": "~30.3.0", "prettier": "~3.8.3", "typescript": "~6.0.3", "typescript-eslint": "~8.59.0" }, "scripts": { "build": "rm -rf dist && tsc", "dependencies:check": "pnpm outdated --json > outdated.json || true", "deploy": "pnpm build && pnpm tarball && pnpm publish", "lint:check": "eslint", "lint": "eslint --fix", "mutate": "stryker run -c stryker.config.json --concurrency 8", "prettier:check": "prettier --check src/*", "prettier": "prettier --write src/*", "release-major": "pnpm version major", "release-minor": "pnpm version minor", "release-patch": "pnpm version patch", "tarball": "pnpm pack", "test:compile": "tsc --project tsconfig-test.json", "test:coverage": "jest --coverage", "test": "jest", "tag:current": "git tag $npm_package_name@$npm_package_version" } }