This repository has been archived by the owner on Sep 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.69 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
94
95
96
97
{
"name": "@intocode-io/line-bot-server",
"version": "0.2.3",
"description": "LINE Bot Server for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "del-cli dist",
"codecov": "codecov -t 4a63f508-52ac-4484-8246-d0973f65dcdf",
"coverage": "nyc --reporter=html --reporter=text-summary mocha --exit",
"gen-default-ssl": "ts-node scripts/gen-default-ssl.ts",
"gen-empty-env": "ts-node scripts/gen-empty-env.ts",
"lint": "tslint -p . -p scripts -p test",
"lint:fix": "tslint -p . -p scripts -p test --fix",
"prebuild": "npm run clean && npm run lint",
"precommit": "npm run lint",
"prepush": "npm run build && npm run coverage",
"pretest": "npm run build && npm run gen-default-ssl && npm run gen-empty-env",
"release": "npm run build && npm publish --access public",
"test": "nyc --reporter=lcov --reporter=text-summary mocha --exit",
"test:watch": "mocha --watch-extensions ts --watch"
},
"nyc": {
"per-file": true,
"extension": [
".ts",
".tsx"
],
"include": [
"lib/**/*.ts"
],
"exclude": [
"**/*.d.ts",
"lib/bot-server-options.ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"cache": true,
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/intocode-io/line-bot-server-nodejs.git"
},
"keywords": [
"LINE",
"Bot",
"Server",
"Express"
],
"author": "Satana Charuwichitratana",
"license": "MIT",
"bugs": {
"url": "https://github.com/intocode-io/line-bot-server-nodejs/issues"
},
"homepage": "https://github.com/intocode-io/line-bot-server-nodejs#readme",
"dependencies": {
"@line/bot-sdk": "^6.3.0",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.0",
"@types/fs-extra": "^5.0.4",
"@types/lodash": "^4.14.118",
"@types/node": "^10.12.9",
"@types/pem": "^1.9.3",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-status-monitor": "^1.2.3",
"fs-extra": "^7.0.1",
"lodash": "^4.17.11",
"pem": "^1.13.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/chai-http": "^3.0.5",
"@types/mocha": "^5.2.5",
"@types/sinon": "^5.0.6",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.2.0",
"codecov": "^3.1.0",
"del-cli": "^1.1.0",
"husky": "^1.1.4",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prettier": "^1.15.2",
"sinon": "^7.1.1",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
}
}