-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.8 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.8 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "botmou",
"version": "0.1.0",
"author": {
"name": "Matthieu Oger",
"url": "https://matthieuoger.com/"
},
"contributors": [
{
"name": "Pixelnest Studio",
"url": "https://pixelnest.io/"
}
],
"keywords": [
"hubot",
"slack",
"google sheets",
"bot"
],
"description": "Botmout, a Google Sheets-powered chatbot.",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/solarsailer/botmou.git"
},
"scripts": {
"start": "hubot --name \"botmou\"",
"prod": "hubot --name \"botmou\" --adapter slack",
"test": "eslint ."
},
"prettier": {
"semi": false,
"singleQuote": true,
"bracketSpacing": false
},
"eslintConfig": {
"extends": "standard",
"rules": {
"space-before-function-paren": [
"error",
"never"
],
"object-curly-spacing": [
"error",
"never"
]
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js, json}": [
"eslint"
],
"*.{js, json, css, md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"cleverbot-node": "^0.3.11",
"date-fns": "^1.30.1",
"google-spreadsheet": "^2.0.7",
"hubot": "^3.2.0",
"hubot-auth": "^2.1.0",
"hubot-diagnostics": "1.0.0",
"hubot-help": "^1.0.1",
"hubot-redis-brain": "1.0.0",
"hubot-slack": "^4.6.0",
"lodash": "^4.17.11"
},
"devDependencies": {
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.1",
"prettier": "^1.16.1"
}
}