-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.72 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
{
"name": "@tosee/misc",
"version": "5.0.6",
"description": "Framework based on Koa and Typescript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"coverage": "nyc --reporter=lcov --reporter=html npm run test && nyc report",
"test": "cross-env NODE_ENV=test alsatian './test/main/e2e/*.spec.ts'",
"start": "cross-env NODE_ENV=test ts-node test/app.ts",
"tscversion": "tsc --version",
"ts-node": "ts-node --version",
"doc": "typedoc --out ./docs ./lib&&touch docs/.nojekyll",
"codecov": "codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/fullstackoverflow/Misc"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"extension": [
".ts"
]
},
"author": "tosee",
"license": "MIT",
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/router": "^10.1.1",
"@tosee/log": "^1.4.2",
"@tosee/util": "^1.1.5",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"glob": "^8.0.3",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/glob": "^7.2.0",
"@types/keygrip": "^1.0.2",
"@types/koa": "^2.13.4",
"@types/koa__cors": "^3.3.0",
"@types/koa__router": "^8.0.11",
"@types/koa-bodyparser": "^4.3.7",
"@types/node": "^18.0.0",
"@types/supertest": "^2.0.12",
"alsatian": "^3.2.1",
"codecov": "^3.8.2",
"cross-env": "^7.0.3",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"supertest": "^6.2.3",
"ts-node": "^10.8.1",
"typedoc": "^0.22.17",
"typescript": "^4.7.3"
}
}