-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 907 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
{
"name": "final-form-persist",
"version": "1.0.4",
"description": "Persist your form values into a storage",
"author": "premieroctet",
"license": "MIT",
"repository": "premieroctet/final-form-persist",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "rollup -c",
"prepare": "yarn run build"
},
"dependencies": {
"lodash.debounce": "^4.0.8"
},
"devDependencies": {
"@types/lodash.debounce": "^4.0.6",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"final-form": "^4.18.6",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-typescript2": "^0.17.0",
"typescript": "^3.8.3"
},
"files": [
"dist"
]
}