-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
130 lines (130 loc) · 3.52 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "daruk",
"version": "2.4.13",
"description": "a node.js web framework",
"main": "build/index.js",
"scripts": {
"doc": "typedoc",
"deploy": "./deployDoc.sh",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"dev": "ts-node --project tsconfig.json --files src/index.ts",
"build": "node build.js",
"demo": "ts-node --project tsconfig.json --files",
"cov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test": "cross-env TS_NODE_FILES=true nyc --reporter=lcov --reporter=text-summary --cache mocha --timeout 15000 --exit ./test/{,/**/}*.test.ts",
"tslint": "tslint --project . ./src/**/*.ts",
"prepublish": "npm run build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"types": "./types/index.d.ts",
"files": [
"types",
"build",
"LICENSE",
"CHANGELOG.md",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "[email protected]:darukjs/daruk.git"
},
"keywords": [
"framework"
],
"author": {
"name": "xiaojue",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@commitlint/config-conventional": "^7.6.0",
"@commitlint/travis-cli": "^7.6.1",
"@types/basic-auth": "^1.1.2",
"@types/chai": "^4.1.7",
"@types/convert-hrtime": "^2.0.0",
"@types/expect": "^1.20.3",
"@types/is": "^0.0.21",
"@types/koa-ejs": "^4.2.0",
"@types/koa-favicon": "^2.0.19",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/object-assign-deep": "^0.4.0",
"@types/sinon": "^7.0.10",
"@types/supertest": "^2.0.7",
"@types/url-join": "^4.0.0",
"all-contributors-cli": "^6.3.1",
"apollo-server-koa": "^2.5.0",
"chai": "^4.1.2",
"codecov": "^3.5.0",
"conventional-changelog-cli": "^2.0.31",
"cross-env": "^5.2.0",
"graphql": "^14.3.0",
"koa-ejs": "^4.2.0",
"koa-favicon": "^2.0.1",
"mocha": "^5.2.0",
"nyc": "^15.1.0",
"sinon": "^7.3.0",
"supertest": "^3.3.0",
"ts-node": "^8.1.0",
"tslint": "^5.12.1",
"tslint-config-alloy": "^0.2.1",
"tslint-config-prettier": "^1.17.0",
"typedoc": "^0.19.0",
"typeorm": "^0.2.16",
"typescript": "^4.0.2"
},
"dependencies": {
"@koa/router": "^9.4.0",
"@types/cron": "^1.7.1",
"@types/koa": "^2.0.46",
"@types/koa-cookie": "^1.0.0",
"@types/koa__router": "^8.0.2",
"@types/recursive-readdir": "^2.2.0",
"@types/url-join": "^4.0.0",
"chalk": "^2.4.1",
"convert-hrtime": "^2.0.0",
"cron": "^1.7.1",
"daruk-exit-hook": "^0.3.0",
"daruk-logger": "^1.10.1",
"daruk-request-id": "^0.4.3",
"daruk-validate": "^1.1.0",
"htmlspecialchars": "^1.0.5",
"http-server-shutdown": "^1.1.2",
"inversify": "^5.0.1",
"inversify-binding-decorators": "^4.0.0",
"inversify-inject-decorators": "^3.1.0",
"is": "^3.3.0",
"koa": "^2.5.2",
"koa-body": "^4.1.0",
"koa-cookie": "^1.0.0",
"koa-onerror": "^4.1.0",
"koa2-swagger-ui": "^5.10.0",
"object-assign-deep": "^0.4.0",
"recursive-readdir": "^2.2.2",
"reflect-metadata": "^0.1.13",
"swagger-jsdoc": "^6.2.8",
"url-join": "^4.0.0"
},
"nyc": {
"include": [
"src/**/*"
],
"exclude": [
"src/typings/*"
],
"extension": [
".ts"
],
"reporter": [
"text-summary",
"html"
],
"require": [
"ts-node/register"
],
"sourceMap": true,
"instrument": true
}
}