Files
freeCodeCamp/probot/package.json
2018-12-05 11:23:55 +05:30

52 lines
1.0 KiB
JSON

{
"name": "presolver",
"version": "1.0.0",
"description": "A Probot app",
"author": "tbushman <tbushman@pu.bli.sh>",
"license": "ISC",
"repository": "https://github.com//presolver.git",
"homepage": "https://github.com//presolver",
"bugs": "https://github.com//presolver/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon",
"start": "probot run ./index.js",
"lint": "standard --fix",
"test": "jest && standard",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"probot": "^7.2.0"
},
"devDependencies": {
"expect": "^23.6.0",
"jest": "^22.4.3",
"nock": "^10.0.0",
"nodemon": "^1.17.2",
"smee-client": "^1.0.2",
"standard": "^10.0.3"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"env": [
"jest"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"testEnvironment": "node"
}
}