-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "hubot-mailchimp",
"description": "Use Hubot to add or remove members to a mailing list and get a report of your latest sent campaign.",
"version": "2.0.3",
"author": {
"name": "Mathieu BAUMGARTNER",
"email": "https://github.com/m-baumgartner"
},
"homepage": "https://github.com/hubot-scripts/hubot-mailchimp",
"license": "MIT",
"keywords": [
"hubot",
"hubot-scripts",
"mailchimp"
],
"repository": {
"type": "git",
"url": "git://github.com/hubot-scripts/hubot-mailchimp.git"
},
"bugs": {
"url": "https://github.com/hubot-scripts/hubot-mailchimp/issues"
},
"dependencies": {
"@mailchimp/mailchimp_marketing": "^3.0.80"
},
"peerDependencies": {
"hubot": ">=3 || 0.0.0-development"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"hubot-test-helper": "^1.9.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nock": "^13.3.2",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0"
},
"main": "index.js",
"scripts": {
"test": "script/test",
"prepare": "husky install"
}
}