-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 1.75 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
{
"name": "yup-by-example",
"version": "4.0.2",
"description": "A random, fake, contextual test data generator driven from Yup schemas",
"keywords": [
"yup",
"test",
"data",
"generator",
"random",
"fake",
"fixtures",
"contextual",
"stub",
"mock",
"tdd",
"schema"
],
"author": "@cressie176 Stephen Cresswell",
"license": "MIT",
"main": "src/index.js",
"directories": {
"example": "example",
"test": "test"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"coverage": "nyc --report html --reporter lcov --reporter text-summary node test",
"example": "node example/test/api.test.js",
"lint": "eslint src test",
"lint-staged": "lint-staged",
"test": "node test",
"prepare": "husky"
},
"homepage": "https://acuminous.github.io/yup-by-example/",
"repository": {
"type": "git",
"url": "git+https://github.com/acuminous/yup-by-example.git"
},
"bugs": {
"url": "https://github.com/acuminous/yup-by-example/issues"
},
"dependencies": {
"chance": "^1.1.4",
"date-fns": "^2.13.0",
"debug": "^4.1.1",
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"lodash.set": "^4.3.2",
"lodash.unset": "^4.5.2"
},
"peerDependencies": {
"yup": "^1.0.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-mocha": "^8.1.0",
"fast-stats": "^0.0.6",
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"nyc": "^15.1.0",
"yup": "^1.3.3",
"zunit": "^4.0.2"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"nyc": {
"all": false,
"include": [
"src/**/*.js"
],
"reporter": [
"html",
"lcov",
"text-summary"
]
}
}