-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.73 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
{
"name": "reducer-logger",
"version": "1.0.3",
"description": "Hooks for debug your awesome useReducer React API",
"repository": "adibfirman/reducer-logger",
"author": "adibfirman <[email protected]>",
"license": "MIT",
"private": false,
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"keywords": [
"react",
"reactjs",
"log",
"hooks"
],
"files": [
"dist"
],
"scripts": {
"test:dev": "jest --watch",
"test": "jest",
"start": "microbundle watch --jsx React.createElement",
"build": "microbundle --jsx React.createElement",
"format": "prettier {src/**}/*.{md,js,jsx,tsx} --write",
"release": "git tag $npm_package_version && git push --tags && npm login && npm publish"
},
"peerDependencies": {
"react": ">= 16.8",
"react-dom": ">= 16.8"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/plugin-transform-regenerator": "7.8.7",
"@babel/preset-env": "7.9.0",
"@babel/preset-react": "7.9.4",
"@testing-library/jest-dom": "5.3.0",
"@testing-library/react": "10.0.2",
"babel-jest": "25.2.6",
"babel-plugin-transform-async-to-promises": "0.8.15",
"eslint": "6.8.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "3.0.0",
"eslint-plugin-standard": "4.0.1",
"jest": "25.2.7",
"microbundle": "0.12.0-next.9",
"prettier": "2.0.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-test-renderer": "16.13.1",
"rollup": "2.3.3"
}
}