generated from moubi/swipeable-react
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "enform",
"version": "2.4.1",
"main": "lib/index.js",
"description": "Handle React forms with joy!",
"homepage": "https://github.com/moubi/enform#readme",
"author": "Miroslav Nikolov",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/moubi/enform"
},
"keywords": [
"react",
"form",
"forms",
"validation",
"submit",
"onchange",
"state",
"fields",
"state-management"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"babel-jest": "^25.1.0",
"babel-minify": "^0.5.1",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.2",
"gzip-size-cli": "^3.0.0",
"jest": "^25.1.0",
"prettier": "~1.19.1",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-dom-testing": "^1.5.0",
"react-test-renderer": "^16.13.0",
"sinon": "9.0.0",
"unexpected": "^11.0.1",
"unexpected-dom": "^4.11.1",
"unexpected-reaction": "^2.6.0",
"unexpected-sinon": "^10.11.2"
},
"peerDependencies": {
"react": ">= 16.8.0"
},
"scripts": {
"build": "mkdir -p lib && babel ./src --out-file ./lib/index.js --no-comments --presets minify",
"size": "gzip-size ./lib/index.js",
"prepare": "rm -rf ./lib && npm run build",
"prepublishOnly": "npm run test:nowatch",
"test": "jest --watch",
"test:nowatch": "jest",
"lint": "eslint ."
}
}