-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.8 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
{
"name": "react-formstate-fp",
"version": "1.3.1",
"description": "An API to build, query, update, and bind formstate in React. Develop forms DRYly in React.",
"main": "./lib/index.js",
"module": "./src/index.js",
"files": [
"/lib",
"/src",
"/contract"
],
"types": "./contract/api/index.d.ts",
"scripts": {
"build": "npx babel src --out-dir lib",
"pretest": "npm run build",
"localtest": "npx jest",
"prelocaltest": "npm run build",
"prepublishOnly": "npm run localtest"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": false
}
],
"@babel/preset-react"
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"absoluteRuntime": false,
"corejs": false,
"helpers": true,
"regenerator": false,
"useESModules": false,
"version": "^7.17.8"
}
]
]
},
"keywords": [
"react",
"form",
"forms",
"async",
"asynchronous",
"validation",
"formstate",
"state"
],
"author": "Daniel Trelogan",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dtrelogan/react-formstate-fp.git"
},
"bugs": {
"url": "https://github.com/dtrelogan/react-formstate-fp/issues"
},
"homepage": "https://github.com/dtrelogan/react-formstate-fp#readme",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@types/react": "^17.0.24",
"eslint": "^8.12.0",
"jest": "^27.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"@babel/runtime": "^7.17.8"
}
}