forked from localytics/lambda-slack-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.04 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
{
"name": "lambda-slack-router",
"version": "1.7.0",
"description": "A utility class for managing Slack slashcommands in an AWS lambda function",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/localytics/lambda-slack-router.git"
},
"author": "Localytics",
"license": "MIT",
"bugs": {
"url": "https://github.com/localytics/lambda-slack-router/issues"
},
"homepage": "https://github.com/localytics/lambda-slack-router",
"dependencies": {
"qs": "^6.0.2"
},
"devDependencies": {
"chai": "^3.4.1",
"dirty-chai": "^1.2.2",
"eslint": "^2.2.0",
"eslint-config-airbnb": "^6.0.2",
"mocha": "^2.3.4",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
},
"eslintConfig": {
"extends": "airbnb/legacy",
"env": {
"node": true,
"mocha": true
},
"rules": {
"camelcase": 0,
"func-names": 0,
"max-len": [
2,
{
"code": 117
}
]
}
}
}