-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1007 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1007 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
32
33
34
35
36
37
38
39
40
{
"name": "line-bot-api",
"version": "0.0.3",
"description": "SDK of the LINE Messaging API",
"main": "src/line-bot.js",
"scripts": {
"test": "ava",
"lint": "eslint lib test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taish/line-bot-sdk-node.git"
},
"author": "taish <kbystis+git@gmail.com>",
"license": "MIT",
"licenses": [
{
"type": "The MIT License",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"bugs": {
"url": "https://github.com/taish/line-bot-sdk-node/issues"
},
"homepage": "https://github.com/taish/line-bot-sdk-node#readme",
"devDependencies": {
"ava": "^0.16.0",
"eslint": "^3.10.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-ava": "^4.0.0",
"eslint-plugin-promise": "^3.3.2",
"eslint-plugin-standard": "^2.0.1",
"jsdoc": "^3.4.3",
"sinon": "^1.17.6"
},
"dependencies": {
"request": "^2.78.0",
"request-promise": "^4.1.1"
}
}