forked from Vector000/bilive_server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1014 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
{
"name": "bilive_server",
"version": "1.0.1",
"description": "bilibili直播监控程序",
"main": "index.js",
"scripts": {
"build": "npm run build:tsc && npm-run-posix-or-windows build:copy",
"build:tsc": "tsc -p tsconfig.json || exit 0",
"build:copy": "cp bilive/options.default.json build/bilive/",
"build:copy:windows": "copy bilive\\options.default.json build\\bilive\\ /Y",
"clean": "rimraf build",
"start": "node build/app.js"
},
"author": "lzghzr",
"license": "MIT",
"devDependencies": {
"@types/nedb": "^1.8.7",
"@types/node": "^12.0.8",
"@types/nodemailer": "^4.6.8",
"@types/request": "^2.48.1",
"@types/ws": "^6.0.1",
"npm-run-posix-or-windows": "^2.0.2",
"rimraf": "^2.6.3",
"typescript": "^3.5.2"
},
"dependencies": {
"nedb": "^1.8.0",
"nodemailer": "^4.7.0",
"request": "^2.88.0",
"ws": "^6.2.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}