-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.73 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
{
"name": "formular",
"version": "3.1.6",
"author": {
"name": "Pavel Ivanov",
"email": "grammka@gmail.com"
},
"description": "Build forms in React. Easy-Peasy!",
"homepage": "https://github.com/pavelivanov/formular#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pavelivanov/formular.git"
},
"bugs": {
"url": "https://github.com/pavelivanov/formular/issues"
},
"keywords": [
"form",
"formjs",
"react",
"hooks"
],
"files": [
"lib",
"dist"
],
"license": "ISC",
"module": "dist/index.es.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --bail --colors",
"build": "rimraf ./dist && rimraf ./lib && rollup -c",
"watch": "rollup -cw",
"prepublish": "npm run build && npm run test"
},
"peerDependencies": {
"react": ">=17.0.0"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/plugin-transform-classes": "^7.7.4",
"@babel/plugin-transform-destructuring": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.7",
"@babel/register": "^7.7.7",
"@testing-library/react-hooks": "^3.2.1",
"@types/react": "^16.9.22",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.1.0",
"jest": "^24.9.0",
"rimraf": "^3.0.2",
"rollup": "^2.1.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-typescript2": "^0.26.0",
"typescript": "^3.8.3"
},
"dependencies": {
"fast-deep-equal": "^3.1.1"
}
}