-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.14 KB
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
{
"name": "use-effect-callbacks",
"version": "0.1.0",
"description": "A react hook for stable callbacks executed as effects",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikparo/use-effect-callbacks.git"
},
"keywords": [
"react",
"hooks",
"useCallback",
"useEffect",
"useReducer"
],
"author": "Nik Paro",
"license": "MIT",
"bugs": {
"url": "https://github.com/nikparo/use-effect-callbacks/issues"
},
"homepage": "https://github.com/nikparo/use-effect-callbacks#readme",
"dependencies": {
"@types/react": "^16.9.41"
},
"devDependencies": {
"prettier": "^2.0.5",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.5"
},
"peerDependencies": {
"react": "^16.8.0"
}
}