-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
84 lines (84 loc) · 2.21 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
{
"name": "@geoapify/react-geocoder-autocomplete",
"version": "2.0.1",
"description": "React component for the Geoapify Geocoder Autocomplete field",
"author": {
"name": "Geoapify GmbH",
"email": "[email protected]",
"url": "https://geoapify.com"
},
"keywords": [
"react",
"reactjs",
"geoapify",
"geocoding",
"address",
"autocomplete",
"search",
"city",
"country",
"state",
"amenity",
"location"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://[email protected]/geoapify/react-geocoder-autocomplete.git"
},
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.tsx",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepublish": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"@geoapify/geocoder-autocomplete": "^2.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@geoapify/geocoder-autocomplete": "^2.0.1",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"cross-env": "^7.0.3",
"eslint": "^9.9.1",
"gh-pages": "^6.1.1",
"globals": "^15.9.0",
"microbundle-crl": "^0.13.11",
"npm-run-all": "^4.1.5",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^10.0.2",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "^5.0.1",
"typescript": "^5.5.4"
},
"jest": {
"transformIgnorePatterns": [
"!node_modules/"
]
},
"files": [
"dist"
]
}