forked from the-road-to-learn-react/use-state-with-callback
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.82 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
{
"name": "use-state-with-callback",
"version": "1.0.18",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "webpack --config ./webpack.config.js --mode=production",
"prepare": "npm run build",
"test": "nyc mocha --require @babel/register --require ./test/dom.js 'src/**/**spec.js'",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [],
"author": "“Robin <[email protected]”> (https://www.robinwieruch.de)",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^18.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"jsdom": "^15.1.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"sinon": "^7.3.2",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-road-to-learn-react/use-state-with-callback.git"
},
"bugs": {
"url": "https://github.com/the-road-to-learn-react/use-state-with-callback/issues"
},
"homepage": "https://github.com/the-road-to-learn-react/use-state-with-callback#readme"
}