-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 997 Bytes
/
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
{
"name": "nodejs-tw-bot",
"version": "0.1.0",
"description": "nodejs-tw-bot",
"main": "src/app.js",
"dependencies": {
"debug": "^3.1.0",
"dotenv": "^4.0.0",
"file-type": "^7.0.1",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-logger": "^3.1.0",
"koa-router": "^7.2.1",
"linebot": "^1.3.0",
"linebot-koa-middleware": "0.0.1",
"lodash": "^4.17.19",
"moment": "^2.20.1",
"node-schedule": "^1.3.0",
"request": "^2.83.0"
},
"devDependencies": {
"cz-conventional-changelog": "^2.0.0",
"standard": "^10.0.3",
"standard-version": "^4.2.0"
},
"scripts": {
"start": "node src/app.js",
"lint": "standard 'src/**/*.js' 'test/**/*.js'",
"lint:fix": "npm run lint -- --fix",
"release": "standard-version",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}