forked from line/line-bot-sdk-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.63 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
{
"name": "@line/bot-sdk",
"version": "6.1.0",
"description": "Node.js SDK for LINE Messaging API",
"engines": {
"node": ">=4"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"docs",
"lib"
],
"scripts": {
"pretest": "npm run build",
"test": "API_BASE_URL=http://localhost:1234/ TEST_PORT=1234 TS_NODE_CACHE=0 mocha -r ts-node/register test/*.spec.ts",
"prettier": "prettier --parser typescript --trailing-comma all \"{lib,test}/**/*.ts\"",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- -l",
"clean": "del-cli dist",
"prebuild": "npm run format:check && npm run clean",
"build": "tsc",
"docs": "gitbook install && gitbook serve docs",
"docs:publish": "./docs/publish.sh",
"release": "npm run build && npm publish --access public",
"precommit": "npm run format:check",
"prepush": "npm run format:check && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git@github.com:line/line-bot-sdk-nodejs.git"
},
"keywords": [
"node",
"line",
"sdk"
],
"dependencies": {
"@types/body-parser": "^1.16.8",
"@types/file-type": "^5.2.1",
"@types/node": "^7.0.31",
"axios": "^0.16.2",
"body-parser": "^1.18.2",
"file-type": "^7.2.0"
},
"devDependencies": {
"@types/express": "^4.0.35",
"@types/mocha": "^2.2.41",
"del-cli": "^1.1.0",
"express": "^4.16.3",
"gitbook-cli": "^2.3.2",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"prettier": "^1.8.2",
"ts-node": "^3.3.0",
"typescript": "^2.6.1"
},
"license": "Apache-2.0"
}