UNPKG

1.21 kBJSONView Raw
1{
2 "name": "yup",
3 "version": "1.0.0-beta.8",
4 "description": "Dead simple Object schema validation",
5 "main": "index.js",
6 "module": "index.esm.js",
7 "runkitExampleFilename": "./runkit-example.js",
8 "repository": {
9 "type": "git",
10 "url": "git+https://github.com/jquense/yup.git"
11 },
12 "author": {
13 "name": "@monasticpanic Jason Quense"
14 },
15 "license": "MIT",
16 "bugs": {
17 "url": "https://github.com/jquense/yup/issues"
18 },
19 "homepage": "https://github.com/jquense/yup",
20 "release": {
21 "conventionalCommits": true,
22 "publishDir": "lib"
23 },
24 "prettier": {
25 "singleQuote": true,
26 "trailingComma": "all"
27 },
28 "lint-staged": {
29 "*.{js,json,css,md}": [
30 "prettier --write",
31 "git add"
32 ]
33 },
34 "jest": {
35 "globals": {
36 "YUP_USE_SYNC": false
37 },
38 "testEnvironment": "node",
39 "setupFilesAfterEnv": [
40 "./test-setup.js"
41 ],
42 "roots": [
43 "test"
44 ],
45 "testRegex": "\\.(j|t)s$",
46 "testPathIgnorePatterns": [
47 "helpers\\.ts",
48 "\\.eslintrc\\.js",
49 "types\\.ts"
50 ]
51 },
52 "dependencies": {
53 "property-expr": "^2.0.5",
54 "tiny-case": "^1.0.3",
55 "toposort": "^2.0.2",
56 "type-fest": "^2.19.0"
57 }
58}