forked from final-form/final-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.34 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
{
"name": "final-form",
"version": "4.8.3",
"description":
"🏁 Framework agnostic, high performance, subscription-based form state management",
"main": "dist/final-form.cjs.js",
"jsnext:main": "dist/final-form.es.js",
"module": "dist/final-form.es.js",
"typings": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"start": "nps",
"test": "nps test",
"precommit": "lint-staged && npm start validate",
"prepublish": "lint-staged && npm start validate"
},
"author":
"Erik Rasmussen <[email protected]> (http://github.com/erikras)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/final-form/final-form.git"
},
"bugs": {
"url": "https://github.com/final-form/final-form/issues"
},
"homepage": "https://github.com/final-form/final-form#readme",
"devDependencies": {
"@babel/core": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"@babel/preset-stage-2": "^7.0.0-beta.49",
"@types/node": "^9.6.7",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"bundlesize": "^0.17.0",
"doctoc": "^1.3.1",
"eslint": "^4.19.1",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flowtype": "^2.48.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"flow-bin": "^0.73.0",
"glow": "^1.2.2",
"husky": "^0.14.3",
"jest": "^23.1.0",
"lint-staged": "^7.1.2",
"nps": "^5.9.0",
"nps-utils": "^1.5.0",
"prettier": "^1.11.0",
"prettier-eslint-cli": "^4.7.1",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^4.0.0-beta.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^3.2.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^4.0.0",
"tslint": "^5.10.0",
"typescript": "^2.8.4"
},
"lint-staged": {
"*.{js*,ts*,json,md,css}": ["prettier --write", "git add"]
},
"bundlesize": [
{
"path": "dist/final-form.umd.min.js",
"threshold": "4kB"
},
{
"path": "dist/final-form.es.js",
"threshold": "6kB"
},
{
"path": "dist/final-form.cjs.js",
"threshold": "6kB"
}
]
}