-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.7 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.7 KB
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
{
"name": "@tosee/misc",
"version": "5.0.10",
"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": "git+https://github.com/fullstackoverflow/Misc.git"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"extension": [
".ts"
]
},
"author": "tosee",
"license": "MIT",
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/router": "^15.0.0",
"@tosee/log": "^1.4.2",
"@tosee/util": "^1.1.5",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"glob": "^13.0.0",
"koa": "^3.1.1",
"koa-bodyparser": "^4.4.1",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/keygrip": "^1.0.6",
"@types/koa": "^3.0.1",
"@types/koa__cors": "^5.0.1",
"@types/koa__router": "^12.0.5",
"@types/koa-bodyparser": "^4.3.13",
"@types/node": "^24.10.2",
"@types/supertest": "^6.0.3",
"alsatian": "^3.2.1",
"codecov": "^3.8.3",
"cross-env": "^10.1.0",
"nyc": "^17.1.0",
"source-map-support": "^0.5.21",
"supertest": "^7.1.4",
"ts-node": "^10.9.2",
"typedoc": "^0.28.15",
"typescript": "^5.9.3"
}
}