This repository has been archived by the owner on Nov 19, 2023. It is now read-only.
forked from lisong/code-push-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.18 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
{
"name": "@shm-open/code-push-server",
"description": "CodePush service is hotupdate services which adapter react-native-code-push and cordova-plugin-code-push",
"version": "1.0.6",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shm-open/code-push-server.git"
},
"keywords": [
"code-push",
"react-native",
"cordova",
"services",
"code",
"push"
],
"author": "shihuimiao",
"bin": {
"code-push-server": "./bin/www",
"code-push-server-db": "./bin/db"
},
"engines": {
"node": ">= 6.0",
"npm": ">= 3.10.8"
},
"scripts": {
"dev": "supervisor ./bin/www",
"start": "node ./bin/www",
"init": "node ./bin/db init",
"upgrade": "node ./bin/db upgrade",
"release": "npm test && standard-version && git push --follow-tags origin master && npm publish",
"test": "make test",
"coverage": "make coverage"
},
"dependencies": {
"aliyun-oss-upload-stream": "1.3.0",
"aliyun-sdk": "1.12.3",
"aws-sdk": "2.979.0",
"bcryptjs": "2.4.3",
"body-parser": "1.19.0",
"cookie-parser": "1.4.5",
"cos-nodejs-sdk-v5": "2.10.0",
"diff-match-patch": "1.0.5",
"express": "4.17.1",
"extract-zip": "2.0.1",
"formidable": "1.2.2",
"fs-extra": "10.0.0",
"helmet": "4.6.0",
"jschardet": "3.0.0",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.21",
"log4js": "6.3.0",
"moment": "2.29.1",
"mysql2": "2.3.0",
"node-fetch": "2.6.1",
"nodemailer": "6.6.3",
"pug": "3.0.2",
"qiniu": "7.4.0",
"rand-token": "1.0.1",
"recursive-readdir": "2.2.2",
"redis": "3.1.2",
"sequelize": "6.6.5",
"serve-favicon": "2.5.0",
"slash": "3.0.0",
"upyun": "3.4.4",
"validator": "13.6.0",
"yargs": "17.1.1",
"yazl": "2.5.1"
},
"devDependencies": {
"@shm-open/eslint-config-bundle": "1.6.5",
"istanbul": "0.4.5",
"mocha": "9.1.3",
"should": "13.2.3",
"standard-version": "9.3.2",
"supertest": "6.1.6",
"supervisor": "0.12.0"
},
"files": [
"bin",
"config",
"core",
"docs",
"models",
"public",
"routes",
"sql",
"views",
"app.js",
"README.md",
"LICENSE"
]
}