This repository was archived by the owner on Mar 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.58 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
{
"name": "@ustack/halo",
"version": "0.6.0",
"description": "ustack web framework",
"dependencies": {
"@ustack/egg-ue": "^0.8.0",
"debug": "^4.1.0",
"delegates": "^1.0.0",
"egg": "^2.9.1",
"egg-redis": "^2.3.0",
"egg-scripts": "^2.6.0",
"egg-sequelize": "^4.1.0",
"egg-session-redis": "^2.0.1",
"egg-view-ejs": "^2.0.0",
"ioredis": "^3.2.2",
"is-type-of": "^1.2.1",
"koa-compose": "^4.1.0",
"mysql2": "^1.5.3",
"socket.io": "^2.1.1",
"socket.io-redis": "^5.2.0"
},
"devDependencies": {
"autod": "^3.0.1",
"autod-egg": "^1.0.0",
"egg-bin": "^4.4.0",
"egg-ci": "^1.8.0",
"egg-mock": "^3.14.0",
"eslint": "^4.18.0",
"eslint-config-egg": "^7.0.0",
"mocha": "^5.1.1",
"socket.io-client": "^2.1.1",
"assert": "^1.4.1"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "npm run lint && egg-bin pkgfiles --check && npm run cov",
"autod": "autod",
"pkgfiles": "egg-bin pkgfiles"
},
"ci": {
"version": "8, 9"
},
"repository": {
"type": "git",
"url": "git@github.com:unitedstack/halo.git"
},
"keywords": [
"egg",
"egg-framework"
],
"author": "hbshun <bb@bbyy.me>",
"files": [
"index.js",
"lib",
"config"
],
"eslintIgnore": [
"coverage",
"dist"
],
"license": "Apache-2.0",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
}
}