This repository was archived by the owner on Oct 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.4 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.4 KB
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
{
"name": "@bluecateng/auto-forms",
"version": "1.0.0",
"description": "Auto-wired form hooks",
"license": "ISC",
"sideEffects": false,
"scripts": {
"build": "rm -rf dist && babel -d dist --env-name production src",
"test": "jest --verbose",
"test-ci": "npm ci && jest --ci --silent --reporters=jest-junit",
"lint": "eslint src",
"reformat": "prettier --write .",
"prepack": "npm t && npm run build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git@github.com:bluecatengineering/auto-forms.git"
},
"keywords": [
"react",
"hooks",
"form"
],
"files": [
"dist"
],
"exports": "./dist/index.js",
"peerDependencies": {
"react": ">= 16.8"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@bluecateng/eslint-config-react": "^3.0.0",
"@bluecateng/git-checks": "^1.0.0",
"@bluecateng/prettier-config": "^1.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^8.10.0",
"husky": "^7.0.4",
"jest": "^28.0.2",
"jest-junit": "^13.0.0",
"lint-staged": "^12.3.4",
"lodash-es": "^4.17.21",
"prettier": "^2.4.1",
"prop-types": "^15.7.2"
},
"jest": {
"automock": true,
"clearMocks": true,
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/jest_helpers/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"fakeTimers": {
"enableGlobally": true
},
"setupFilesAfterEnv": [
"<rootDir>/jest_helpers/setup-enzyme"
],
"transformIgnorePatterns": [
"node_modules/(?!(lodash-es|@bluecateng)/)"
],
"unmockedModulePathPatterns": [
"enzyme",
"lodash-es",
"prop-types",
"react",
"react-dom"
]
},
"jest-junit": {
"outputDirectory": "build",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}",
"ancestorSeparator": " / "
},
"prettier": "@bluecateng/prettier-config",
"eslintConfig": {
"extends": "@bluecateng/react"
},
"lint-staged": {
"*.{js}": [
"eslint --fix --max-warnings 0",
"prettier --write"
],
"*.{json,less,md,yml}": [
"prettier --write"
]
}
}