-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "superbot",
"version": "0.1.0",
"description": "Superbot is a small library for telegram bots",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d lib",
"dev": "nodemon -w src -x 'npm run build && nodemon lib'"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sergeysova/superbot.git"
},
"keywords": [
"telegram",
"bot",
"core",
"nodejs",
"super"
],
"author": "Sergey Sova <[email protected]> (https://lestad.top)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sergeysova/superbot/issues"
},
"homepage": "https://github.com/sergeysova/superbot#readme",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.35",
"@babel/core": "^7.0.0-beta.35",
"@babel/plugin-transform-modules-commonjs": "^7.0.0-beta.35",
"@babel/preset-flow": "^7.0.0-beta.35",
"@babel/preset-stage-2": "^7.0.0-beta.35",
"babel-eslint": "^8.1.2",
"eslint": "^4.14.0",
"eslint-config-atomix-base": "^5.2.0",
"flow-bin": "^0.61.0",
"nodemon": "^1.14.6"
},
"dependencies": {
"debug": "^3.1.0",
"node-fetch": "^1.7.3",
"telegram-typings": "^0.3.5-2"
}
}