-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
43 lines (43 loc) · 982 Bytes
/
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
{
"name": "linebot",
"version": "1.6.1",
"description": "Node.js SDK for the LINE Messaging API",
"main": "index.js",
"files": [
"index.js",
"lib/**"
],
"scripts": {
"start": "node examples/demo.js",
"pretest": "eslint index.js lib/**/*.js test/**/*.js",
"test": "mocha --timeout 5000 --exit",
"lint": "eslint index.js lib/**/*.js test/**/*.js examples/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boybundit/linebot.git"
},
"keywords": [
"LINE",
"Messaging",
"API",
"chat",
"bot"
],
"author": "Bundit Jitkongchuen",
"license": "MIT",
"bugs": {
"url": "https://github.com/boybundit/linebot/issues"
},
"homepage": "https://github.com/boybundit/linebot#readme",
"dependencies": {
"body-parser": "^1.18.2",
"debug": "^4.2.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"eslint": "^7.10.0",
"mocha": "^8.1.3",
"nock": "^13.0.4"
}
}