-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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
{
"name": "aom",
"version": "1.0.0-beta.47",
"description": "API Over Models: typescript-decorators meta-framework",
"keywords": [
"koa",
"openapi",
"router",
"api",
"web",
"middleware",
"framework",
"backend"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"engines": {
"node": ">=12.22.0"
},
"scripts": {
"prebuild": "rm -rf lib/",
"build": "tsc --project tsconfig.build.json",
"test": "echo \"Error: no test specified\" && exit 0",
"prepare": "npm run build"
},
"author": "Grigory Kholstinnikov",
"license": "MIT",
"dependencies": {
"bluebird": "^3.7.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"class-validator-jsonschema": "^5.0.1",
"openapi3-ts": "^4.4.0",
"reflect-metadata": "^0.2.2",
"yaml": "^2.5.0"
},
"bugs": {
"url": "https://github.com/scarych/aom/issues"
},
"devDependencies": {
"@types/node": "^16.9.6",
"tslib": "^2.3.0",
"typescript": "^4.4.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scarych/aom.git"
},
"homepage": "https://aom.js.org"
}