application-services
Version:
Out of the box application environment and configuration service.
183 lines (182 loc) • 4.55 kB
JSON
{
"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": "7.0.2",
"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}",
"cover": "npm run jest -- --coverage",
"cz": "env NODE_ENV=${NODE_ENV:-cli} git cz",
"doc": "echo \"# API\" > API.md; jsdoc2md 'dist/**/*.js' >> API.md && git add API.md",
"format": "npm run prettier",
"jest": "NODE_OPTIONS=--experimental-vm-modules NODE_ENV=test jest",
"lint": "eslint 'src/**/*.ts'",
"metapak": "metapak",
"precz": "npm run build && npm run doc && npm run architecture && npm t && npm run lint && npm run metapak -- -s",
"prettier": "prettier --write 'src/**/*.ts'",
"preversion": "npm run build && npm run doc && npm run architecture && npm t && npm run lint && npm run metapak -- -s",
"rebuild": "swc ./src -s -d dist -C jsc.target=es2022",
"test": "npm run jest",
"type-check": "tsc --pretty --noEmit",
"version": "npm 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": "^17.0.1",
"dotenv": "^16.4.7",
"knifecycle": "^18.0.0",
"pkg-dir": "^8.0.0",
"yerror": "^8.0.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@swc/cli": "^0.5.2",
"@swc/core": "^1.10.0",
"@swc/helpers": "^0.5.15",
"@swc/jest": "^0.2.37",
"commitizen": "^4.3.1",
"conventional-changelog-cli": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jsarch": "^6.1.2",
"jsdoc-to-markdown": "^9.1.1",
"metapak": "^6.0.2",
"metapak-nfroidure": "19.0.1",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"engines": {
"node": ">=20.11.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"contributors": [],
"files": [
"dist",
"src",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"greenkeeper": {
"ignore": [
"commitizen",
"cz-conventional-changelog",
"conventional-changelog-cli",
"eslint",
"prettier",
"eslint-config-prettier",
"eslint-plugin-prettier",
"typescript-eslint",
"typescript",
"rimraf",
"@swc/cli",
"@swc/core",
"@swc/helpers",
"jest",
"@swc/jest",
"jsdoc-to-markdown",
"jsarch"
]
},
"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"
],
"prettierPath": null
},
"jsarch": {
"parserOptions": {
"plugins": [
"typescript"
]
}
},
"overrides": {
"eslint": "^9.16.0"
}
}