-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
87 lines (87 loc) · 2.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-geolocated",
"description": "React hook for using Geolocation API",
"author": "Dan Homola",
"user": "no23reason",
"version": "0.0.0-semantic-release",
"repository": {
"type": "git",
"url": "https://github.com/no23reason/react-geolocated.git"
},
"homepage": "https://no23reason.github.io/react-geolocated/",
"bugs": {
"url": "https://github.com/no23reason/react-geolocated/issues"
},
"keywords": [
"react",
"reactjs",
"geolocation",
"hook",
"react-hook"
],
"license": "MIT",
"main": "dist-modules",
"typings": "./dist-modules/index.d.ts",
"sideEffects": false,
"publishConfig": {
"provenance": true
},
"scripts": {
"dist": "rimraf ./dist-modules && tsc -p .",
"prepublishOnly": "npm run dist",
"prepush": "npm run test:lint && npm run test:js",
"precommit": "pretty-quick --staged",
"semantic-release": "semantic-release",
"start": "npm run docs:dev",
"test:js": "jest --coverage --testPathPattern './tests'",
"test:lint": "eslint ./src --cache",
"test:tdd": "jest --watch",
"test": "npm run test:lint && npm run test:js",
"docs:dev": "parcel --target docs_dev",
"docs:build": "parcel build --target docs"
},
"targets": {
"main": false,
"docs": {
"source": "demo/index.html",
"distDir": "demo/dist",
"scopeHoist": false,
"publicUrl": "/react-geolocated/"
},
"docs_dev": {
"source": "demo/index.html",
"distDir": "demo/dist"
}
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"peerDependencies": {
"react": ">= 16.8.0 < 20.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.2.1",
"@types/react": "^19.0.1",
"@types/react-test-renderer": "^19.0.0",
"autoprefixer": "^10.4.2",
"eslint": "9.20.0",
"eslint-plugin-react-hooks": "^5.1.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"parcel": "^2.9.0",
"postcss": "^8.4.5",
"prettier": "~3.5.0",
"pretty-quick": "^4.0.0",
"process": "^0.11.10",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-github-corner": "^2.1.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.0.0",
"tailwindcss": "^3.0.15",
"ts-jest": "^29.0.3",
"typescript": "5.7.3",
"typescript-eslint": "^8.18.2"
}
}