privileged-requester/package.json

47 строки
1.4 KiB
JSON

{
"name": "privileged-requester",
"version": "1.0.0",
"description": "GitHub Action which checks a PR against configurable criteria to determine whether or not the PR should be automatically approved",
"main": "lib/index.js",
"scripts": {
"format": "prettier --write '**/*.js'",
"format-check": "prettier --check '**/*.js'",
"lint": "eslint .",
"package": "ncc build index.js -o dist --source-map --license licenses.txt",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "jest",
"bundle": "npm run format && npm run package",
"all": "npm run lint && npm run format && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/privileged-requester.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"pull-request"
],
"author": "GitHub",
"license": "MIT",
"bugs": {
"url": "https://github.com/github/privileged-requester/issues"
},
"homepage": "https://github.com/github/privileged-requester#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@babel/plugin-proposal-throw-expressions": "^7.23.3",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"nock": "^13.4.0",
"prettier": "^3.1.0"
}
}