-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.67 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
{
"name": "slacknpodio",
"version": "3.5.1",
"description": "Creates a bot that listens fo commands and is capable of retrieving and updating information to/from podio via slack.",
"main": "bot/slack.js",
"scripts": {
"test": "clear && ./node_modules/.bin/mocha test/test-bot.js || true",
"start": "clear && node bot/slack.js",
"dev": "clear && ./node_modules/.bin/nodemon bot/slack.js",
"lint": "clear && ./node_modules/.bin/eslint . || true"
},
"engines": {
"node": "^8.11.2",
"npm": "^6.0.1"
},
"keywords": [
"Podio",
"Slack",
"Rafase282",
"Podio-JS"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Rafase282/SlackNPodio.git"
},
"author": "Rafael J. Rodriguez <[email protected]> (https://rafase282.github.io)",
"contributors": [
"Louis Girifalco, Sarju Hansaliya, Sergio Cabral"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Rafase282/SlackNPodio/issues"
},
"homepage": "https://github.com/Rafase282/SlackNPodio#readme",
"dependencies": {
"@slack/client": "^4.2.2",
"dotenv": "^6.0.0",
"podio-js": "^1.6.1",
"yargs": "^11.1.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"expect": "^23.1.0",
"mocha": "^5.2.0",
"nodemon": "^1.17.5"
},
"yargs": {
"short-option-groups": true,
"camel-case-expansion": true,
"dot-notation": true,
"parse-numbers": true,
"boolean-negation": true
}
}