-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 790 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 790 Bytes
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
{
"name": "bot-server",
"version": "1.0.0",
"description": "server architecture for building bots",
"main": "server.js",
"scripts": {
"start": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JonathanZWhite/bot-server.git"
},
"author": "Jonathan White",
"license": "ISC",
"bugs": {
"url": "https://github.com/JonathanZWhite/bot-server/issues"
},
"homepage": "https://github.com/JonathanZWhite/bot-server#readme",
"devDependencies": {
"nodemon": "^1.9.1"
},
"dependencies": {
"bluebird": "^3.3.5",
"es6-promise": "^3.1.2",
"isomorphic-fetch": "^2.2.1",
"lodash-node": "^3.10.2",
"node-telegram-bot-api": "^0.21.1",
"spotify-web-api-node": "^2.3.0",
"winston": "^2.2.0"
}
}