-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 969 Bytes
/
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
{
"name": "mobx-light-form",
"version": "1.0.5",
"description": "Manage React forms state and automatic validation with mobx",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"repository": "https://github.com/Pewww/mobx-light-form.git",
"author": "pewww <[email protected]>",
"keywords": [
"react mobx form",
"mobx",
"form",
"form management",
"mobx form"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest",
"test:dev": "jest --no-coverage"
},
"dependencies": {
"lodash.isempty": "^4.4.0"
},
"peerDependencies": {
"mobx": ">=6.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.0.0",
"@types/lodash.isempty": "^4.4.6",
"babel-jest": "^29.0.2",
"jest": "^29.0.2",
"mobx": "^6.3.13",
"typescript": "^4.5.5"
}
}