-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
85 lines (85 loc) · 2.74 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
{
"name": "amala",
"version": "10.0.8",
"description": "This is a Typescript routing controller system for KoaJS 2+. Define your REST API endpoints using classes and decorators.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"koa",
"router",
"typescript",
"controller",
"rest",
"api",
"versioning",
"openapi 3",
"oas3"
],
"repository": {
"type": "github",
"url": "https://github.com/iyobo/amala"
},
"scripts": {
"test": "jest --config jestconfig.json",
"test:watch": "jest --config jestconfig.json --watch",
"build": "tsc",
"prepublish": "tsc && npm test",
"dev": "tsc -w",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"changelog": "auto-changelog -p",
"release:patch": "npm test && tsc && npm version patch && npm run changelog && git add CHANGELOG.md && git commit -m \"Release\" && npm publish && git push origin master --tags",
"release:minor": "npm test && tsc && npm version minor && npm run changelog && git add CHANGELOG.md && git commit -m \"Release\" && npm publish && git push origin master--tags",
"release:major": "npm test && tsc && npm version major && npm run changelog && git add CHANGELOG.md && git commit -m \"Release\" && npm publish && git push origin master--tags"
},
"files": [
"dist/**/*"
],
"author": "Iyobo Eki",
"license": "MIT",
"dependencies": {
"@hapi/boom": "^10.0.1",
"@koa/cors": "^5.0.0",
"@koa/router": "^12.0.1",
"class-transformer": "*",
"class-validator": "*",
"helmet": "6.0.1",
"koa": "^2.14.2",
"koa-body": "*",
"koa-helmet": "^7.0.2",
"koa2-swagger-ui": "^5.9.1",
"lodash": "^4.17.21",
"openapi-types": "^12.1.3",
"reflect-metadata": "*"
},
"devDependencies": {
"@types/boom": "^7.3.0",
"@types/jest": "^25.1.2",
"@types/koa": "^2.11.1",
"@types/koa__cors": "^4.0.2",
"@types/koa__router": "^12.0.3",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.1",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"auto-changelog": "^2.4.0",
"class-validator": "^0.x",
"eslint": "7.29.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-standard": "5.0.0",
"jest": "^29.7.0",
"supertest": "^4.0.2",
"ts-jest": "^29.1.1",
"ts-morph": "^13.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.1",
"typescript-eslint": "0.0.1-alpha.0"
}
}