UNPKG

application-services

Version:

Out of the box application environment and configuration service.

166 lines (165 loc) 4.26 kB
{ "metapak": { "data": { "files": "'src/**/*.ts'", "testsFiles": "'src/**/*.tests.ts'", "distFiles": "'dist/**/*.js'", "ignore": [ "dist" ], "bundleFiles": [ "dist", "src" ] }, "configs": [ "main", "readme", "eslint", "tsesm", "jest", "jsdocs", "jsarch", "ghactions", "coveralls", "codeclimate" ] }, "name": "application-services", "version": "9.0.1", "description": "Out of the box application environment and configuration service.", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "keywords": [ "env", "config", "knifecycle" ], "scripts": { "architecture": "jsarch 'src/**/*.ts' > ARCHITECTURE.md && git add ARCHITECTURE.md", "build": "rimraf 'dist' && tsc --outDir dist", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md", "cli": "env NODE_ENV=${NODE_ENV:-cli}", "commitlint": "commitlint", "cover": "node --run jest -- --coverage", "doc": "echo \"# API\" > API.md; jsdoc2md 'dist/**/*.js' >> API.md && git add API.md", "format": "node --run prettier", "jest": "NODE_OPTIONS=--experimental-vm-modules NODE_ENV=test jest", "lint": "eslint 'src/**/*.ts'", "metapak": "metapak", "precommit": "node --run test && node --run lint && node --run metapak -- -s && node --run build && node --run doc && node --run architecture", "prettier": "prettier --write 'src/**/*.ts'", "preversion": "node --run build && node --run doc && node --run architecture && node --run test && node --run lint && node --run metapak -- -s", "rebuild": "swc ./src -s -d dist -C jsc.target=es2022", "test": "node --run jest", "version": "node --run changelog && git add CHANGELOG.md" }, "repository": { "type": "git", "url": "git+https://github.com/nfroidure/application-services.git" }, "author": { "name": "Nicolas Froidure", "email": "nicolas.froidure@insertafter.com", "url": "http://insertafter.com/en/index.html" }, "license": "MIT", "bugs": { "url": "https://github.com/nfroidure/application-services/issues" }, "homepage": "https://github.com/nfroidure/application-services#readme", "dependencies": { "common-services": "^20.0.0", "dotenv": "^17.4.2", "knifecycle": "^21.1.0", "package-directory": "^8.2.0", "yerror": "^11.0.0" }, "devDependencies": { "@commitlint/cli": "^20.5.0", "@commitlint/config-conventional": "^20.5.0", "@eslint/js": "^10.0.1", "@swc/cli": "^0.8.1", "@swc/core": "^1.15.24", "@swc/jest": "^0.2.39", "conventional-changelog": "^7.2.0", "eslint": "^10.2.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-jest": "^29.15.1", "eslint-plugin-prettier": "^5.5.5", "jest": "^30.3.0", "jsarch": "^7.1.0", "jsdoc-to-markdown": "^9.1.3", "metapak": "^7.1.0", "metapak-nfroidure": "22.1.1", "prettier": "^3.8.1", "rimraf": "^6.1.3", "typescript": "^6.0.2", "typescript-eslint": "^8.58.0" }, "engines": { "node": ">=24.14.0" }, "contributors": [], "files": [ "dist", "src", "LICENSE", "README.md", "CHANGELOG.md" ], "prettier": { "semi": true, "printWidth": 80, "singleQuote": true, "trailingComma": "all", "proseWrap": "always" }, "jest": { "coverageReporters": [ "lcov" ], "testPathIgnorePatterns": [ "/node_modules/" ], "roots": [ "<rootDir>/src" ], "transform": { "^.+\\.tsx?$": [ "@swc/jest", {} ] }, "testEnvironment": "node", "moduleNameMapper": { "(.+)\\.js": "$1" }, "extensionsToTreatAsEsm": [ ".ts" ] }, "jsarch": { "parserOptions": { "plugins": [ "typescript" ] } }, "funding": { "type": "individual", "url": "https://github.com/sponsors/nfroidure" }, "overrides": { "typescript-eslint": { "typescript": "^6" }, "@typescript-eslint/eslint-plugin": { "typescript": "^6" }, "@typescript-eslint/parser": { "typescript": "^6" } } }