-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.11 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
{
"name": "@curiouser/react-forms",
"version": "0.58.1",
"description": "A simple library for rendering React forms and form fields along with managing form state and validation",
"author": "curiousercreative",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/curiousercreative/react-forms.git"
},
"main": "dist/index.js",
"sideEffects": false,
"source": "src/index.js",
"scripts": {
"build": "rm -rf ./dist/* && babel ./src --out-dir ./dist --ignore './src/**/*.test.js' --ignore './src/**/*.test.jsx' --ignore './src/**/__tests__/' --ignore './src/**/__mocks__/' --source-maps inline --keep-file-extension --copy-files",
"docs": "jsdoc -c ./jsdoc/conf.json -R ./jsdoc/README.md -r ./src",
"prepare": "yarn build",
"start": "yarn watch & (cd example && yarn install && yarn start)",
"test": "yarn install && jest",
"watch": "yarn build --watch"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-export-namespace-from": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@testing-library/react": "^11.2.6",
"babel-eslint": "^10.1.0",
"eslint": "^6.6.0",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-react": "^7.19.0",
"jest": "^24.9.0",
"jsdoc": "^3.6.4",
"jsdoc-memberof-namespace": "^2.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"yarn": "^1.22.10"
},
"files": [
"dist"
],
"dependencies": {
"memoize-one": ">=3.0.0",
"pubsub-js": "^1.8.0"
},
"directories": {
"example": "example"
},
"bugs": {
"url": "https://github.com/curiousercreative/react-forms/issues"
},
"homepage": "https://github.com/curiousercreative/react-forms#readme",
"keywords": [
"react",
"forms",
"component"
]
}