codeowners-api
Version:
Simple module to interact with github codeowners
48 lines (47 loc) • 1.36 kB
JSON
{
"name": "codeowners-api",
"version": "2.0.0",
"description": "Simple module to interact with github codeowners",
"main": "lib/index.js",
"types": "lib/index.d.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"watch": "tsc -w -p tsconfig.json",
"precommit": "lint-staged",
"test": "jest",
"test:watch": "jest --watch",
"prepush": "npm run test",
"prepare": "npm run build"
},
"devDependencies": {
"@types/anymatch": "^1.3.0",
"@types/jest": "^22.2.1",
"@types/joi": "^10.4.0",
"@types/node": "^9.4.7",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"typescript": "^2.4.2"
},
"keywords": [
"codeowners",
"github"
],
"author": "Ore Poran & Elay Gliksberg",
"bugs": {
"url": "https://github.com/code-owners/codeowners-api/issues"
},
"homepage": "https://github.com/code-owners/codeowners-api",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^15.2.4",
"ignore": "^3.3.7"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --single-quote --tab-width 4 --trailing-comma es5 --no-bracket-spacing --print-width 120 --write",
"git add"
]
}
}