-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "sinba",
"version": "0.3.6",
"description": "Sinba, a web framework",
"main": "index.js",
"scripts": {
"start": "tsc --watch --pretty",
"lint": "tslint -p ./",
"clean": "rimraf app lib config types index.js *.map",
"prebuild": "npm run clean && npm run lint",
"build": "tsc",
"test": "mocha --require intelli-espower-loader",
"test:debug": "DEBUG=sin*,logbook,*test* DEBUG_HIDE_DATE=false npm test"
},
"repository": {
"type": "git",
"url": "git@github.com:luqimin/sinba.git"
},
"engines": {
"node": ">= 8.0.0"
},
"keywords": [
"node",
"koa",
"framework"
],
"types": "./types/index.d.ts",
"author": "luqimin",
"license": "ISC",
"devDependencies": {
"@types/koa-session": "^5.7.4",
"intelli-espower-loader": "^1.0.1",
"mocha": "^5.0.4",
"power-assert": "^1.4.4",
"rimraf": "^2.6.2",
"supertest": "^3.0.0",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"dependencies": {
"@koa/cors": "^2.2.2",
"@types/debug": "0.0.30",
"@types/ejs": "^2.6.0",
"@types/extend": "^3.0.0",
"@types/koa": "^2.0.46",
"@types/koa-router": "^7.0.30",
"@types/node-schedule": "^1.2.2",
"debug": "^3.1.0",
"ejs": "^2.6.1",
"extend": "^3.0.2",
"koa": "^2.5.2",
"koa-body": "^4.0.4",
"koa-router": "^7.4.0",
"koa-session": "^5.9.0",
"moment": "^2.22.2",
"node-schedule": "^1.3.0"
}
}