package.json
2.79 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"_from": "@line/bot-sdk",
"_id": "@line/bot-sdk@6.4.0",
"_inBundle": false,
"_integrity": "sha512-N0FkrqFxTTleOpD6y7DTK8qbMYHr9Q8qZfrAmSYEFAGedM1HLJdbNNkStj5GT+svx+w+/ePF/n7nAEts0aJwkA==",
"_location": "/@line/bot-sdk",
"_phantomChildren": {},
"_requested": {
"type": "tag",
"registry": true,
"raw": "@line/bot-sdk",
"name": "@line/bot-sdk",
"escapedName": "@line%2fbot-sdk",
"scope": "@line",
"rawSpec": "",
"saveSpec": null,
"fetchSpec": "latest"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/@line/bot-sdk/-/bot-sdk-6.4.0.tgz",
"_shasum": "18aa7659da26d3a8487614c74ad9ccb80ec4ca59",
"_spec": "@line/bot-sdk",
"_where": "C:\\Users\\KSI\\Desktop\\3-2\\OSS\\LineBot",
"bugs": {
"url": "https://github.com/line/line-bot-sdk-nodejs/issues"
},
"bundleDependencies": false,
"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"
},
"deprecated": false,
"description": "Node.js SDK for LINE Messaging API",
"devDependencies": {
"@types/express": "^4.0.35",
"@types/mocha": "^2.2.41",
"del-cli": "^1.1.0",
"express": "^4.16.3",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"prettier": "^1.15.2",
"ts-node": "^3.3.0",
"typescript": "^3.1.6",
"vuepress": "^0.14.2"
},
"engines": {
"node": ">=6"
},
"files": [
"dist",
"lib"
],
"homepage": "https://github.com/line/line-bot-sdk-nodejs#readme",
"keywords": [
"node",
"line",
"sdk"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"name": "@line/bot-sdk",
"nyc": {
"require": [
"ts-node/register"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/line/line-bot-sdk-nodejs.git"
},
"scripts": {
"build": "tsc",
"clean": "del-cli dist",
"docs": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "./deploy-docs.sh",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- -l",
"prebuild": "npm run format:check && npm run clean",
"precommit": "npm run format:check",
"prepush": "npm run format:check && npm run build && npm run test",
"pretest": "npm run build",
"prettier": "prettier --parser typescript --trailing-comma all \"{lib,test}/**/*.ts\"",
"release": "npm run build && npm publish --access public",
"test": "API_BASE_URL=http://localhost:1234/ TEST_PORT=1234 TS_NODE_CACHE=0 nyc mocha"
},
"types": "dist/index.d.ts",
"version": "6.4.0"
}