This repository was archived by the owner on Sep 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.41 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.41 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
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
{
"name": "trafficlight",
"version": "5.0.1",
"description": "Flexible NodeJS Routing Decorators for API Routing",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "tslint -p ./ ./src/{,**/}*.ts",
"prepublishOnly": "npm run test && npm run build",
"prettier:test": "prettier -c \"./src/{,**/}*.ts\"",
"prettier": "prettier --write \"./src/{,**/}*.ts\"",
"test:cov": "nyc npm run test:unit",
"test:report": "cat ./coverage/lcov.info | codacy-coverage --language typescript",
"test:style": "npm run lint && npm run prettier:test",
"test:unit": "mocha --require ts-node/register ./src/**/*.spec.ts -R spec --bail",
"test": "npm run test:style && npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swimlane/trafficlight.git"
},
"keywords": [
"koa",
"koa2",
"routing",
"decorators",
"typescript",
"es7",
"koa-router"
],
"author": "Swimlane",
"contributors": [
"Austin McDaniel",
"Shaun Burdick <shaun.burdick@swimlane.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/swimlane/trafficlight/issues"
},
"homepage": "https://github.com/swimlane/trafficlight#readme",
"devDependencies": {
"@swimlane/prettier-config-swimlane": "^3.0.2",
"@types/chai": "^4.2.11",
"@types/koa": "^2.11.3",
"@types/koa-router": "^7.4.0",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.1",
"@types/supertest": "^2.0.8",
"@types/temp": "^0.8.34",
"chai": "^4.2.0",
"codacy-coverage": "^3.4.0",
"koa": "^2.11.0",
"koa-better-body": "^3.3.9",
"koa-router": "^8.0.8",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"reflect-metadata": "^0.1.13",
"supertest": "^4.0.2",
"temp": "^0.9.1",
"ts-node": "^8.9.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-security": "^1.16.0",
"tslint-config-swimlane": "^5.0.0",
"typescript": "^3.8.3"
},
"dependencies": {},
"peerDependencies": {
"reflect-metadata": "^0.1.10"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"src/*.d.ts",
"src/**/*.d.ts"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"html",
"text"
],
"all": true
}
}