-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.66 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
{
"name": "@launchpadlab/lp-form",
"version": "2.10.3",
"description": "Extensions for the reduxForm HOC",
"main": "lib/index.js",
"scripts": {
"start": "yarn run build:development",
"build": "mkdir -p lib && babel src --out-dir lib --no-comments --minified",
"build:development": "mkdir -p lib && babel src --watch --out-dir lib",
"clean": "rm -rf lib",
"docs": "documentation build src/index.js -f md -o docs.md",
"lint": "eslint src --max-warnings=0",
"prepublish": "yarn run lint && yarn run clean && yarn run build",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": "launchpadlab/lp-form",
"keywords": [
"redux",
"form"
],
"author": "dpikt",
"license": "MIT",
"files": [
"README.md",
"LICENSE.md",
"lib/"
],
"devDependencies": {
"@launchpadlab/babel-preset": "^2.1.1",
"@launchpadlab/eslint-config": "^2.2.3",
"documentation": "^12.1.1",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.1.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.0",
"react-test-renderer": "^16.9.0",
"redux": "^4.0.4",
"redux-form": "^8.2.5"
},
"peerDependencies": {
"react": ">=15.5.0",
"react-dom": ">=15.5.0",
"react-redux": ">=5.0.0",
"redux-form": ">=6.0.0"
},
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"is-promise": "^2.1.0",
"lodash": "^4.17.4",
"recompose": "^0.26.0",
"validate.js": "^0.11.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn run docs && git add docs.md"
}
}
}