-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "react-ui-formalize",
"version": "0.5.3",
"description": "A set of HoC to help with form management in ReactJS",
"main": "dist/index.js",
"scripts": {
"test": "tape -r @babel/register src/**/*.spec.jsx src/**/*.spec.js | faucet",
"build": "cross-env NODE_ENV=production webpack"
},
"keywords": [
"reactjs",
"forms",
"validation"
],
"repository": "https://github.com/gianmarcotoso/react-ui-formalize",
"author": "Gian Marco Toso <info@gianmarcotoso.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.3",
"babel-loader": "^8.0.6",
"cross-env": "^7.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"faucet": "0.0.1",
"jsdom": "^16.1.0",
"prop-types": "^15.7.2",
"react": "16",
"react-dom": "16",
"react-test-renderer": "^16.12.0",
"sinon": "^8.1.1",
"tape": "^4.13.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"lodash.isequal": "^4.5.0"
},
"peerDependencies": {
"prop-types": "^15.7.2"
}
}