This repository has been archived by the owner on Mar 31, 2023. It is now read-only.
forked from sodaru/yup-to-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.6 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
{
"name": "@sodaru/yup-to-json-schema",
"version": "1.0.2",
"description": "Library to convert Yup to JSON Schema",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "npx rimraf dist",
"test": "npx jest",
"build:tsc": "npx tsc",
"build": "npm run clean && npm run build:tsc",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sodaru/yup-to-json-schema.git"
},
"keywords": [
"yup",
"json",
"yup-schema",
"json-schema",
"sodaru",
"opensource",
"library"
],
"prettier": {
"arrowParens": "avoid",
"endOfLine": "lf",
"trailingComma": "none",
"tabWidth": 2
},
"author": "Raghavendra K R <[email protected]>",
"license": "MIT License",
"bugs": {
"url": "https://github.com/sodaru/yup-to-json-schema/issues"
},
"homepage": "https://github.com/sodaru/yup-to-json-schema#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.20",
"@types/json-schema": "^7.0.7",
"@types/lodash": "^4.14.168",
"@types/yup": "^0.29.11",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"babel-jest": "^26.6.3",
"eslint": "^7.18.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.3",
"yup": "^0.32.8"
},
"dependencies": {
"lodash": "^4.17.20"
}
}