This repository has been archived by the owner on Nov 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@k-suite/server",
"version": "1.1.8",
"main": "lib/index",
"publishConfig": {
"access": "public"
},
"bin": {
"ks-server": "./lib/cli/ks-server.js"
},
"description": "A modular web application framework based on koa.",
"scripts": {
"doc": "jsdoc -c jsdoc.json -t ./node_modules/ink-docstrap/template -R README.md -d './docs' -r --verbose ./src",
"test:all": "npm run test:spec && npm run test:mocha",
"test:spec": "mocha --recursive src/**/*.spec.js --timeout 5000",
"test:mocha": "mocha test/*.mocha.js --timeout 5000",
"test": "npm run build:test && npm run test:all",
"cover": "npm run build:test && npm run cover:unit && npm run cover:integration && npm run cover:report",
"cover:unit": "nyc --silent npm run test:spec",
"cover:integration": "nyc --silent --no-clean npm run test:mocha",
"cover:report": "nyc report --reporter=html --reporter=text",
"bulid:clean": "rm -rf lib",
"build": "npm run bulid:clean && NODE_ENV=development babel src -d lib --copy-files && del lib/**/__test__",
"build:prod": "npm run bulid:clean && NODE_ENV=production babel src -d lib --copy-files && del lib/**/__test__",
"build:test": "npm run bulid:clean && NODE_ENV=test babel src -d lib --copy-files && del lib/**/__test__",
"build:watch": "NODE_ENV=development babel src -w -d lib --copy-files",
"sample": "npm run build && cd test/sample/app_modules/gateway && npm run build && cd ../.. && node index",
"sample:sso:oolong": "cd test/sample/app_modules/sso && npm run oolong:build && npm run oolong:migrate",
"sample:gateway:oolong": "cd test/sample/app_modules/gateway && npm run oolong:build && npm run oolong:migrate"
},
"keywords": [
"web",
"builder",
"modular",
"framework",
"koa"
],
"repository": "https://github.com/kitmi/k-suite/tree/master/packages/server",
"bugs": {
"url": "https://github.com/kitmi/k-suite/issues"
},
"author": "Rockie Guo <rockie@kitmi.com.au>",
"license": "MIT",
"nyc": {
"exclude": [
"babel.config.js",
"test",
"src"
]
},
"peerDependencies": {
"@k-suite/app": "^1.0.2",
"rk-utils": "^2.2.4"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"@k-suite/oolong": "^0.0.1",
"babel-plugin-contract": "^1.3.0",
"babel-plugin-source-map-support": "^2.0.1",
"del-cli": "^1.1.0",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.2",
"koa-body": "^4.0.6",
"luxon": "^1.4.3",
"mocha": "^5.2.0",
"mysql2": "^1.6.4",
"nyc": "^13.0.1",
"rk-utils": "^2.2.4",
"shelljs": "^0.8.2",
"should": "^13.2.3",
"socket.io": "^2.2.0",
"source-map-support": "^0.5.9",
"supertest": "^3.3.0"
},
"dependencies": {
"@koa/cors": "^2.2.3",
"fs-extra": "^7.0.0",
"http-status-codes": "^1.3.0",
"hyperid": "^1.4.1",
"koa": "^2.4.1",
"koa-bodyparser": "^4.2.1",
"koa-compress": "^2.0.0",
"koa-connect": "^2.0.1",
"koa-csrf": "^3.0.7",
"koa-error": "^3.2.0",
"koa-etag": "^3.0.0",
"koa-flash-message": "^0.1.6",
"koa-methodoverride": "^2.0.0",
"koa-mount": "^3.0.0",
"koa-passport": "^4.0.1",
"koa-router": "^7.4.0",
"koa-session": "^5.10.1",
"koa-session-memory": "^1.0.2",
"koa-static": "^4.0.2",
"koa-views": "^6.1.3",
"swig-templates": "^2.0.3",
"validator": "^9.4.1"
},
"gitHead": "699ff81c93d2966f9a86c251d832151c4a450e81"
}