forked from jquense/yup
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 2.98 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "yup",
"version": "1.0.0-beta.3",
"description": "Dead simple Object schema validation",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"runkitExampleFilename": "./runkit-example.js",
"scripts": {
"test": "yarn lint && yarn test-all --runInBand",
"testonly": "jest",
"test-sync": "yarn testonly --projects ./jest-sync.config.json",
"test-all": "yarn testonly --projects ./jest-sync.config.json --projects ./package.json",
"tdd": "jest --watch",
"lint": "eslint src test",
"precommit": "lint-staged",
"toc": "doctoc README.md --github",
"release": "rollout",
"build:dts": "yarn tsc --emitDeclarationOnly -p . --outDir dts",
"build": "rm -rf dts && yarn build:dts && yarn rollup -c rollup.config.js && yarn toc",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jquense/yup.git"
},
"author": {
"name": "@monasticpanic Jason Quense"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jquense/yup/issues"
},
"homepage": "https://github.com/jquense/yup",
"release": {
"conventionalCommits": true,
"publishDir": "lib"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"globals": {
"YUP_USE_SYNC": false
},
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./test-setup.js"
],
"roots": [
"test"
],
"testRegex": "\\.(j|t)s$",
"testPathIgnorePatterns": [
"helpers\\.ts",
"\\.eslintrc\\.js",
"types\\.ts"
]
},
"devDependencies": {
"@4c/cli": "^3.0.1",
"@4c/rollout": "^3.0.1",
"@4c/tsconfig": "^0.4.0",
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"babel-jest": "^27.5.1",
"babel-preset-env-modules": "^1.0.1",
"doctoc": "^2.1.0",
"dts-bundle-generator": "^6.5.0",
"eslint": "^8.10.0",
"eslint-config-jason": "^8.2.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-ts-expect": "^2.1.0",
"eslint-plugin-typescript": "^0.14.0",
"hookem": "^2.0.1",
"jest": "^27.5.1",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"rollup": "^2.69.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"synchronous-promise": "^2.0.15",
"typescript": "^4.6.2"
},
"dependencies": {
"property-expr": "^2.0.4",
"tiny-case": "^1.0.2",
"toposort": "^2.0.2"
}
}