-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "@technobuddha/react-hooks",
"version": "1.0.0",
"description": "A small library of React hooks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rm -rf dist/*",
"build": "tsc",
"x-prepublishOnly": "npm version patch -m 'Publish Release %s'",
"preversion": "npm run build",
"postversion": "git push && git push --tags",
"lint": "eslint . --ext '.ts,.tsx,.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/technobuddha/react-hooks.git"
},
"keywords": [
"React",
"hooks"
],
"author": "Phil Hill <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/technobuddha/react-hooks/issues"
},
"homepage": "https://github.com/technobuddha/react-hooks#readme",
"dependencies": {
"lodash": "^4.17.20",
"react": "^16.14.0"
},
"devDependencies": {
"@types/lodash": "^4.14.165",
"@types/react": "^16.14.2",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.13.0",
"eslint-plugin-react": "^7.21.5",
"typescript": "^4.0.5"
}
}