-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.67 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
{
"name": "mobx-autoform",
"version": "0.14.1",
"description": "Ridiculously simple form state management with mobx",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"./dist"
],
"scripts": {
"prepack": "node scripts/build.js",
"test": "jest",
"test:ci": "jest --coverage --json --outputFile test-results.json",
"fmt": "prettier --ignore-path .gitignore --write ./src",
"lint": "eslint --ignore-path .gitignore .",
"lint:ci": "yarn lint -o lint-results.json -f json",
"duti:fix": "yarn lint --fix && yarn fmt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartprocure/mobx-autoform.git"
},
"keywords": [
"mobx",
"form",
"mobx-form",
"autoform",
"mobx-autoform",
"mobx-react-form"
],
"author": {
"name": "Samuel Greene",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/smartprocure/mobx-autoform/issues"
},
"homepage": "https://github.com/smartprocure/mobx-autoform#readme",
"dependencies": {
"futil": "^1.71.8",
"lodash": "^4.17.21"
},
"devDependencies": {
"danger": "^11.2.1",
"danger-plugin-coverage": "^1.6.2",
"duti": "^0.15.2",
"esbuild": "^0.16.17",
"esbuild-jest": "^0.5.0",
"eslint": "^8.31.0",
"eslint-plugin-import": "^2.27.4",
"glob": "^8.0.3",
"jest": "^29.3.1",
"mobx": ">=4.0.0",
"prettier": "^2.8.2"
},
"peerDependencies": {
"mobx": ">=4.0.0"
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "es5",
"arrowParens": "avoid"
},
"packageManager": "[email protected]"
}