-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
66 lines (66 loc) · 1.86 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
61
62
63
64
65
66
{
"name": "@aiteq/messenger-bot",
"version": "1.1.0-RC.2",
"description": "A TypeScript coded Node.js package for effective building and managing Facebook Messenger Bots.",
"keywords": [
"facebook-messenger-platform",
"facebook-messenger-bot",
"messenger-bot",
"chatbot",
"bot"
],
"main": "./bin/index.js",
"types": "./bin/index.d.ts",
"scripts": {
"compile": "grunt",
"test": "jest",
"lint": "tslint --project .",
"mbutil": "node ./bin/cli/index.js"
},
"bin": {
"mbutil": "./bin/cli/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/aiteq/messenger-bot.git"
},
"bugs": {
"url": "https://github.com/aiteq/messenger-bot/issues"
},
"homepage": "https://github.com/aiteq/messenger-bot#readme",
"author": "Aiteq Reloaded, s.r.o.",
"license": "MIT",
"devDependencies": {
"@aiteq/grunt-slack": "^1.0.0-beta.1",
"@types/body-parser": "^1.16.5",
"@types/ejs": "^2.3.33",
"@types/express": "^4.0.37",
"@types/jest": "^20.0.8",
"@types/lowdb": "^0.15.0",
"@types/minimist": "^1.2.0",
"@types/node": "^8.0.26",
"grunt": "^1.0.1",
"grunt-coveralls": "^1.0.1",
"grunt-exec": "^3.0.0",
"grunt-file-append": "0.0.7",
"grunt-ts": "^5.5.1",
"grunt-tslint": "^5.0.1",
"jest": "^20.0.4",
"ts-jest": "^20.0.14",
"tslint": "^5.7.0",
"typescript": "^2.5.2"
},
"dependencies": {
"async-file": "^2.0.2",
"axios": "^0.16.2",
"body-parser": "^1.17.2",
"ejs": "^2.5.7",
"express": "^4.15.4",
"log4js": "^2.3.3",
"lowdb": "^0.15.0",
"minimist": "^1.2.0"
},
"engines": {
"node": ">=8.4.0"
}
}