-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.1 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
{
"version": "1.7.2",
"name": "react-hooks-combine",
"description": "React hooks powered, recompose like utility belt for ladies and gentlemen.",
"main": "dist/index.js",
"types": "@types/index.d.ts",
"module": "dist/index.js",
"homepage": "https://github.com/Shalimov/react-hooks-combine/blob/master/readme.md",
"contributors": [
{
"name": "Igor Shalimov",
"email": "work.igor.shalimov@gmail.com",
"url": "https://github.com/shalimov"
},
{
"name": "Aleksey Makhankov",
"email": "aleksey.makhankov@gmail.com",
"url": "https://github.com/alekseymakhankov"
}
],
"repository": "git@github.com:Shalimov/react-hooks-combine.git",
"license": "MIT",
"private": false,
"files": [
"dist",
"@types"
],
"keywords": [
"react",
"reactjs",
"react-hooks",
"performance",
"combine",
"hooks",
"api",
"HOC",
"high-order-component",
"recompose",
"toolkit",
"utilities"
],
"scripts": {
"prepare": "yarn build",
"build": "rollup --config",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"eslint": "./node_modules/eslint/bin/eslint.js",
"lint": "yarn eslint ./src",
"lint:fix": "yarn eslint ./src --fix"
},
"peerDependencies": {
"react": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@testing-library/react-hooks": "^2.0.1",
"@types/jest": "^24.0.12",
"babel-jest": "^24.7.1",
"eslint": "6.3.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"husky": "^3.0.5",
"jest": "^24.7.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rollup": "^1.10.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-uglify": "^6.0.2"
},
"dependencies": {}
}