-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
104 lines (104 loc) · 3.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "final-form-calculate",
"version": "1.3.2",
"description": "Decorator for calculating field values based on other field values in 🏁 Final Form",
"main": "dist/final-form-calculate.cjs.js",
"jsnext:main": "dist/final-form-calculate.es.js",
"module": "dist/final-form-calculate.es.js",
"files": [
"dist"
],
"typings": "dist/index.d.ts",
"scripts": {
"start": "nps",
"test": "nps test",
"precommit": "lint-staged && npm start validate"
},
"author": "Erik Rasmussen <rasmussenerik@gmail.com> (http://github.com/erikras)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/final-form/final-form-calculate.git"
},
"bugs": {
"url": "https://github.com/final-form/final-form-calculate/issues"
},
"homepage": "https://github.com/final-form/final-form-calculate#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^26.3.0",
"bundlesize": "^0.18.0",
"doctoc": "^1.4.0",
"eslint": "^7.8.1",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"final-form": "^4.19.1",
"flow": "^0.2.3",
"flow-bin": "^0.132.0",
"glow": "^1.2.2",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.13",
"nps": "^5.9.3",
"nps-utils": "^1.7.0",
"prettier": "^2.1.1",
"prettier-eslint-cli": "^5.0.0",
"rollup": "^2.26.9",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.2",
"typescript": "^4.0.2"
},
"peerDependencies": {
"final-form": ">=1.3.0"
},
"lint-staged": {
"*.{js,json,md,css}": [
"prettier --write",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
".*\\.ts"
]
},
"bundlesize": [
{
"path": "dist/final-form-calculate.umd.min.js",
"threshold": "800B"
},
{
"path": "dist/final-form-calculate.es.js",
"threshold": "1.2kB"
},
{
"path": "dist/final-form-calculate.cjs.js",
"threshold": "1.2kB"
}
]
}