-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 953 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
35
36
37
38
39
{
"name": "recurlybot",
"version": "0.9.0",
"description": "Slack bot to notify new Recurly subscriptions",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/eslint ./ && mocha $(find ./test -name *_spec.js)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AudienseCo/recurlybot.git"
},
"keywords": [
"slack",
"recurly",
"bot"
],
"author": "Audiense",
"license": "MIT",
"bugs": {
"url": "https://github.com/AudienseCo/recurlybot/issues"
},
"homepage": "https://github.com/AudienseCo/recurlybot#readme",
"dependencies": {
"@slack/webhook": "^5.0.0",
"lodash": "^4.17.11",
"recurly-js": "^3.2.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"should": "^8.3.0",
"sinon": "^7.3.2"
}
}