-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1 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": "@waynechang65/linebot",
"version": "1.2.2",
"description": "Node.js SDK for the LINE Messaging API",
"main": "index.js",
"files": [
"index.js",
"lib/**"
],
"scripts": {
"start": "node examples/demo-es7.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/WayneChang65/linebot2"
},
"keywords": [
"LINE",
"Messaging",
"API",
"chat",
"bot",
"linebot",
"nodejs"
],
"author": "Wayne Chang",
"license": "MIT",
"bugs": {
"url": "https://github.com/WayneChang65/linebot2/issues"
},
"homepage": "https://github.com/WayneChang65/linebot2#readme",
"dependencies": {
"body-parser": "^1.18.2",
"debug": "^4.1.1",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"eslint": "^7.3.0",
"mocha": "^9.1.4",
"nock": "^12.0.3"
}
}