process-utils
Version:
Utilities for process object
90 lines (89 loc) • 2.08 kB
JSON
{
"name": "process-utils",
"version": "4.0.0",
"description": "Utilities for process object",
"author": "Mariusz Nowak <medyk@medikoo.com> (http://www.medikoo.com/)",
"keywords": [
"process",
"node",
"environment"
],
"repository": "medikoo/process-utils",
"dependencies": {
"ext": "^1.4.0",
"fs2": "^0.3.9",
"memoizee": "^0.4.14",
"type": "^2.1.0"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-medikoo": "^4.0.0",
"essentials": "^1.1.1",
"git-list-updated": "^1.2.1",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"nyc": "^15.1.0",
"prettier-elastic": "^2.1.2",
"standard-version": "^9.0.0",
"tape": "^4.13.3",
"tape-index": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.{css,html,js,json,md,yaml,yml}": [
"prettier -c"
]
},
"eslintConfig": {
"extends": "medikoo/node",
"root": true
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"overrides": [
{
"files": "*.md",
"options": {
"tabWidth": 2
}
}
]
},
"nyc": {
"all": true,
"exclude": [
"coverage/**",
"test/**"
]
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
}
},
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=html --reporter=text-summary npm test",
"check-coverage": "npm run coverage && nyc check-coverage --statements 80 --function 80 --branches 80 --lines 80",
"lint": "eslint --ignore-path=.gitignore .",
"lint-updated": "pipe-git-updated --ext=js -- eslint --ignore-pattern '!*'",
"prepare-release": "standard-version && prettier --write CHANGELOG.md",
"prettier-check-updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
"prettify": "prettier --write --ignore-path .gitignore '**/*.{css,html,js,json,md,yaml,yml}'",
"test": "npm run test-prepare && npm run test-run",
"test-prepare": "tape-index",
"test-run": "node test.index.js"
},
"engines": {
"node": ">=10.0"
},
"license": "ISC"
}