This repository was archived by the owner on Dec 13, 2020. It is now read-only.
generated from CharlesStover/node-package-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.69 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
{
"name": "use-async-function",
"version": "1.0.3",
"author": "Charles Stover <use-async-function@charlesstover.com>",
"description": "A React hook for integrating asynchronous function state into React function component state.",
"homepage": "https://www.npmjs.com/package/use-async-function",
"main": "./dist/index.js",
"repository": "https://github.com/CharlesStover/use-async-function",
"types": "./dist/index.d.ts",
"bugs": {
"email": "use-async-function@charlesstover.com",
"url": "https://github.com/CharlesStover/use-async-function/issues"
},
"directories": {
"lib": "src"
},
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "npm run prepublishOnly",
"clean": "rm -rf build dist node_modules",
"prepublishOnly": "webpack",
"test": "jest",
"test-watch": "jest --watch"
},
"dependencies": {},
"devDependencies": {
"@testing-library/react-hooks": "^2.0.0",
"@types/jest": "^23.0.0",
"@types/node": "^11.0.0",
"@types/react": "^16.3.0",
"@types/react-dom": "^16.3.0",
"@typescript-eslint/eslint-plugin": "^1.0.0",
"@typescript-eslint/parser": "^1.0.0",
"configure-webpack": "^1.0.2",
"eslint": "^5.0.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^1.0.0",
"husky": "^2.0.0",
"jest": "^24.0.0",
"lint-staged": "^8.0.0",
"prettier": "^1.0.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-test-renderer": "^16.8.0",
"ts-jest": "^24.0.0",
"webpack": "^4.0.0",
"webpack-cli": "^3.0.0"
},
"peerDependencies": {
"react": "^16.8.0"
}
}