forked from line/line-bot-sdk-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.32 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@line/bot-sdk",
"version": "__LINE_BOT_SDK_NODEJS_VERSION__",
"description": "Node.js SDK for LINE Messaging API",
"engines": {
"node": ">=18"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"lib"
],
"scripts": {
"pretest": "npm run format && npm run build",
"test": "TEST_PORT=1234 TS_NODE_CACHE=0 mocha",
"covtest": "TEST_PORT=1234 TS_NODE_CACHE=0 nyc mocha",
"prettier": "prettier \"{lib,test}/**/*.ts\"",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- -l",
"clean": "rm -rf dist/*",
"prebuild": "npm run format:check && npm run clean",
"build": "tsc",
"docs": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "./scripts/deploy-docs.sh",
"apidocs": "typedoc --excludePrivate --plugin typedoc-plugin-markdown --out docs/apidocs lib/index.ts",
"generate-changelog": "ts-node ./scripts/generate-changelog.ts",
"release": "npm run build && npm publish --access public"
},
"repository": {
"type": "git",
"url": "[email protected]:line/line-bot-sdk-nodejs.git"
},
"keywords": [
"node",
"line",
"sdk"
],
"dependencies": {
"@types/body-parser": "^1.19.2",
"@types/node": "^20.0.0",
"axios": "^1.0.0",
"body-parser": "^1.20.0",
"file-type": "^16.5.4",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/express": "4.17.21",
"@types/finalhandler": "1.2.3",
"@types/mocha": "10.0.6",
"express": "4.18.2",
"finalhandler": "1.2.0",
"husky": "8.0.3",
"mocha": "10.2.0",
"msw": "2.0.9",
"nyc": "15.1.0",
"prettier": "3.1.0",
"ts-node": "10.9.1",
"typedoc": "^0.25.1",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "5.2.2",
"vuepress": "^2.0.0-beta.67"
},
"husky": {
"hooks": {
"pre-commit": "npm run format:check",
"pre-push": "npm run format:check && npm run build && npm run test"
}
},
"nyc": {
"require": [
"ts-node/register"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": true,
"instrument": true
},
"mocha": {
"require": "ts-node/register",
"spec": [
"test/**/*.spec.ts",
"lib/**/tests/**/*.spec.ts"
]
},
"license": "Apache-2.0"
}