codeowners-utils
Version:
Utilities for working with CODEOWNERS files
56 lines (55 loc) • 1.2 kB
JSON
{
"name": "codeowners-utils",
"version": "1.0.2",
"description": "Utilities for working with CODEOWNERS files",
"main": "dist/codeowners-utils.js",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamiebuilds/codeowners-utils.git"
},
"keywords": [
"codeowners",
"utils",
"utilities",
"lib",
"globs"
],
"author": "Jamie Kyle <me@thejameskyle.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamiebuilds/codeowners-utils/issues"
},
"homepage": "https://github.com/jamiebuilds/codeowners-utils#readme",
"devDependencies": {
"@types/cross-spawn": "^6.0.0",
"@types/find-up": "^2.1.1",
"@types/locate-path": "^2.0.0",
"@types/node": "^10.12.18",
"@types/strip-indent": "^2.0.0",
"ava": "^1.1.0",
"prettier": "^1.16.1",
"strip-indent": "^2.0.0",
"ts-node": "^8.0.1",
"typescript": "^3.2.4"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"dependencies": {
"cross-spawn": "^7.0.2",
"find-up": "^4.1.0",
"ignore": "^5.1.4",
"locate-path": "^5.0.0"
}
}