pr-view
Version:
Preview deployments for your pull requests
84 lines (83 loc) • 1.93 kB
JSON
{
"name": "pr-view",
"version": "0.1.35",
"description": "Preview deployments for your pull requests",
"scripts": {
"build": "tsc -p .",
"lint": "eslint . --ext .ts",
"test": "jest --config jestconfig.json",
"pr-view-dev": "ts-node bin/pr-view.ts",
"refresh": "rm -rf dist ./node_modules ./yarn.json && yarn install",
"prepublish": "yarn build",
"pre-commit": "yarn run build && yarn run lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dphang/pr-view.git"
},
"keywords": [
"serverless",
"aws",
"web",
"website",
"web-app",
"app",
"pull-request",
"pull",
"request",
"review"
],
"author": "Daniel Phang",
"license": "MIT",
"bugs": {
"url": "https://github.com/dphang/pr-view/issues"
},
"homepage": "https://github.com/dphang/pr-view#readme",
"dependencies": {
"@octokit/rest": "17.3.0",
"aws-sdk": "2.656.0",
"consola": "2.11.3",
"handlebars": "4.7.6",
"ora": "4.0.3",
"serverless": "1.67.3",
"yargs": "15.3.1"
},
"devDependencies": {
"@types/jest": "25.2.1",
"@types/node": "14.0.0",
"@types/yargs": "15.0.4",
"@typescript-eslint/eslint-plugin": "2.28.0",
"@typescript-eslint/parser": "2.28.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.2.5",
"jest": "25.3.0",
"lint-staged": "10.2.11",
"prettier": "2.0.5",
"ts-jest": "26.0.0",
"ts-node": "8.8.2",
"typescript": "^3.8.3"
},
"main": "./dist/bin/pr-view.js",
"bin": {
"pr-view": "./dist/bin/pr-view.js"
},
"files": [
"./dist/**/*"
],
"husky": {
"hooks": {
"pre-commit": "yarn run pre-commit"
}
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json,yml}": [
"prettier --write"
]
}
}