-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
66 lines (66 loc) · 1.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
{
"name": "@sodaru/yup-to-json-schema",
"version": "2.0.1",
"description": "Library to convert Yup to JSON Schema",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "npx rimraf dist",
"prettier": "npx prettier -c ./ --write",
"build:tsc": "npx tsc",
"build": "npm run prettier && npm run clean && npm run build:tsc",
"pretest": "npm run build",
"test": "npx jest",
"prepack": "npm run test",
"postversion": "git push --follow-tags"
},
"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": "^1.1.1"
},
"dependencies": {}
}