-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.1 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
{
"name": "stated-form-bean",
"version": "0.4.0",
"description": "React Form Binding via StatedBean",
"repository": "[email protected]/mjolnirjs/stated-form-bean.git",
"license": "MIT",
"main": "lib/cjs.js",
"module": "lib/es",
"es2015": "lib/es2015.js",
"fesm5": "lib/esm.js",
"unpkg": "lib/umd.min.js",
"types": "lib/types/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rimraf dist lib && run-p build:**",
"build:example": "parcel build ./example/index.html -d dist",
"build:r": "r -p",
"build:ts": "tsc -p src",
"dev": "parcel ./example/index.html --https",
"lint": "run-p lint:*",
"lint:es": "cross-env EFF_NO_LINK_RULES=true eslint . --cache --ext js,md,ts,tsx -f friendly",
"lint:tsc": "tsc --noEmit",
"serve": "serve dist",
"start": "yarn dev",
"test": "jest",
"type-coverage": "type-coverage --detail --ignore-catch --ignore-files 'lib/**/*' --strict"
},
"peerDependencies": {
"rxjs": "^6.0.0",
"stated-bean": "^0.8.3",
"yup": "^0.27.0"
},
"dependencies": {
"lodash.set": "^4.3.2"
},
"devDependencies": {
"@1stg/app-config": "^0.1.15",
"@1stg/lib-config": "^0.1.13",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.22",
"@types/lodash.set": "^4.3.6",
"@types/node": "^12.12.7",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-test-renderer": "^16.9.1",
"@types/set-value": "^2.0.0",
"@types/yup": "^0.26.23",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.11.0",
"rimraf": "^3.0.0",
"rxjs": "^6.5.3",
"serve": "^11.1.0",
"stated-bean": "^0.8.2",
"ts-jest": "^24.0.2",
"type-coverage": "^2.2.0",
"typescript": "^3.7.2",
"yup": "^0.27.0"
},
"resolutions": {
"postcss": "^7.0.21"
},
"sideEffects": false,
"alias": {
"stated-form-bean": "./src"
},
"typeCoverage": {
"atLeast": 98
}
}