forked from andyrichardson/fielder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.04 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.04 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
{
"name": "fielder",
"version": "1.3.1",
"description": "A field-first form library for React and React Native",
"main": "dist/index.js",
"module": "dist/index.es.js",
"umd:main": "dist/index.umd.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"keywords": [
"fielder",
"react",
"form",
"dynamic",
"validation"
],
"scripts": {
"start": "rollup -c rollup.config.js --watch",
"test": "jest",
"build": "rollup -c rollup.config.js",
"check-formatting": "prettier --check \"./**/*.{ts,tsx,md,mdx}\" \"!./CHANGELOG.md\"",
"lint": "eslint -c .eslintrc \"src/**.{ts,tsx}\"",
"changelog": "docker run -it --rm -v \"$(pwd)\":/usr/local/src/your-app ferrarimarco/github-changelog-generator -u andyrichardson -p fielder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andyrichardson/fielder.git"
},
"author": "Andy Richardson (andyrichardson)",
"license": "MIT",
"bugs": {
"url": "https://github.com/andyrichardson/fielder/issues"
},
"homepage": "https://github.com/andyrichardson/fielder#readme",
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.0",
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"@types/yup": "^0.29.3",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"react": "^16.12.0",
"react-dom": "^16.13.1",
"rollup": "^2.16.1",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.1.0",
"tslib": "^2.0.0",
"typescript": "^3.9.5",
"yup": "^0.29.1"
},
"peerDependencies": {
"react": ">= 16.8.0"
}
}