-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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
{
"name": "@codeperate/foalts-apischema-builder",
"version": "1.0.8",
"description": "A small library that helps you build ApiSchema for foalTS.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"release": "np",
"test": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeperate/foalts-apischema-builder.git"
},
"keywords": [
"FoalTS",
"foal",
"OAS3",
"ApiSchema",
"builder"
],
"author": "Codeperate Limited",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeperate/foalts-apischema-builder/issues"
},
"homepage": "https://www.codeperate.com",
"dependencies": {
"@foal/core": "^2.4.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"class-validator-jsonschema": "^3.0.1"
},
"peerDependencies": {
"@foal/core": ">=2.4.0"
},
"devDependencies": {
"np": "^7.5.0",
"typescript": "^4.2.4"
},
"publishConfig": {
"access": "public"
}
}