-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.85 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "release-buddy",
"version": "1.0.0",
"description": "Release buddy helps orchestrate some of the tasks needed when releasing code.",
"author": "Cam Sloan <cam@sloan.ca>",
"repository": "https://github.com/camsloanftc/release-buddy.git",
"homepage": "https://github.com/camsloanftc/release-buddy",
"bugs": "https://github.com/camsloanftc/release-buddy/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"main": "handler.js",
"scripts": {
"simulate": "yarn probot simulate release test/fixtures/release.published.json ./index.js",
"dev": "nodemon",
"start": "probot run ./index.js",
"lint": "standard --fix",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"deploy": "node_modules/.bin/dotenv serverless deploy"
},
"dependencies": {
"@probot/serverless-gcf": "^0.2.0",
"@sendgrid/mail": "^6.3.1",
"confluence-api": "^1.4.0",
"dotenv": "^7.0.0",
"dotenv-cli": "^2.0.0",
"markdown": "^0.5.0",
"node-fetch": "^2.2.0",
"probot": "^7.2.0",
"remove-markdown": "^0.3.0",
"serverless-google-cloudfunctions": "^2.3.2",
"slackify-markdown": "^1.0.4"
},
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.24.1",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"jest": "^22.4.3",
"nodemon": "^1.18.10",
"prettier": "^1.14.2",
"serverless": "^1.34.1",
"serverless-offline": "^3.25.17",
"smee-client": "^1.0.2",
"standard": "^10.0.3"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/test/"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
}
}