-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@launchpadlab/lp-hoc",
"version": "5.0.7",
"description": "React HOCs",
"main": "lib/index.js",
"module": "esm/index.js",
"sideEffects": false,
"repository": "launchpadlab/lp-hoc",
"homepage": "https://github.com/launchpadlab/lp-hoc",
"author": {
"name": "David Pickart",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"start": "yarn run build:development",
"build": "yarn build:cjs && yarn build:esm && yarn build:styles",
"build:cjs": "babel src --out-dir lib",
"build:esm": "BABEL_ENV=esm babel src --out-dir esm",
"build:development": "BABEL_ENV=esm babel src --watch --out-dir esm",
"build:styles": "cp -r src/styles lib/styles",
"clean": "rm -rf lib esm",
"docs": "documentation build src/index.js -f md -o docs.md",
"lint": "eslint src --max-warnings=0",
"prepublish": "npm run clean && npm run build",
"test": "jest",
"size": "yarn build && size-limit",
"test:coverage": "jest --coverage",
"report-coverage": "codeclimate-test-reporter < coverage/lcov.info"
},
"files": [
"README.md",
"LICENSE.md",
"lib/",
"esm/"
],
"dependencies": {
"@launchpadlab/lp-requests": "^4.1.6",
"classnames": "^2.2.5",
"humps": "^2.0.1",
"lodash": "^4.17.4",
"prop-types": "^15.5.8",
"query-string": "^5.1.1",
"react-body-classname": "^1.2.0",
"react-modal": "^3.10.1",
"recompose": "^0.26.0",
"redux": "^4.0.0"
},
"peerDependencies": {
"react": "^15.5.4 || ^16.4.0",
"react-redux": "^5.0.6 || ^6.0.1 || ^7.0.0",
"react-router": "^3.0.0 || ^4.0.0 || ^5.0.0",
"redux-modal": "^2.0.2 || ^3.0.1 || ^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/polyfill": "^7.7.0",
"@launchpadlab/babel-preset": "^2.1.0",
"@launchpadlab/eslint-config": "^2.7.0",
"@size-limit/preset-small-lib": "^3.0.0",
"codeclimate-test-reporter": "^0.5.0",
"documentation": "^12.1.4",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "^6.1.0",
"husky": "^4.2.1",
"isomorphic-fetch": "^2.2.1",
"jest": "^25.1.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-redux": "^7.1.1",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-router-v3": "npm:react-router@^3.0.0",
"redux-modal": "^4.0.0",
"size-limit": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn run docs && git add docs.md"
}
}
}