-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "@jeact/hooks",
"version": "1.3.1",
"description": "Some hooks to handle states in a very easy way.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "node dist/test.js",
"release": "standard-version",
"share": "git push --follow-tags origin main && npm publish --access public",
"alpha": "standard-version --prerelease alpha",
"share-alpha": "git push --follow-tags origin main && npm publish --tag alpha --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JebBarbas/jeact-hooks.git"
},
"author": "jebbarbas",
"license": "ISC",
"bugs": {
"url": "https://github.com/JebBarbas/jeact-hooks/issues"
},
"homepage": "https://github.com/JebBarbas/jeact-hooks#readme",
"keywords": [
"react",
"jeact",
"hooks"
],
"devDependencies": {
"@types/node": "^16.11.7",
"@types/react": "^17.0.27",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"standard-version": "^9.3.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"react": "^17.0.2"
}
}