-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
43 lines (43 loc) · 972 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
40
41
42
43
{
"name": "slack-bot",
"version": "1.0.0",
"description": "Slack Bot",
"license": "MIT",
"author": "Lester Chan <[email protected]> (https://lesterchan.net)",
"homepage": "https://lesterchan.net",
"repository": {
"type": "git",
"url": "https://github.com/lesterchan/slack-bot.git"
},
"main": "index.js",
"scripts": {
"lint": "eslint *.js test/*.js",
"test": "mocha"
},
"eslintConfig": {
"extends": "techinasia-base",
"env": {
"mocha": true,
"node": true
},
"rules": {
"no-unused-expressions": 0,
"func-names": 0,
"strict": 0,
"max-len": 0
}
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.26.0",
"eslint-config-techinasia-base": "^0.8.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^10.1.0"
},
"dependencies": {
"moment": "^2.29.1",
"request": "^2.88.2",
"request-promise": "^4.2.6"
}
}