-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
34 lines (34 loc) · 918 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "bastion-github-bot",
"version": "1.3.0",
"description": "A GitHub bot to automate common tasks in GitHub.",
"author": {
"name": "Sankarsan Kampa",
"url": "https://sankarsankampa.com"
},
"homepage": "https://github.com/TheBastionBot/Bastion-GitHub-Bot",
"license": "GPL-3.0",
"repository": "https://github.com/TheBastionBot/Bastion-GitHub-Bot.git",
"scripts": {
"develop": "nodemon --exec \"npm start\"",
"start": "probot run ./index.js",
"lint": "./node_modules/bin/eslint *.js",
"unit": "jest --verbose",
"test": "npm run lint && npm run unit",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"probot": "^7.3.1",
"snyk": "^1.230.5"
},
"devDependencies": {
"eslint": "^5.6.1",
"jest": "^24.0.0",
"nodemon": "^1.17.3"
},
"engines": {
"node": ">= 8.11.4"
},
"snyk": true
}