-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
82 lines (82 loc) · 2.31 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
{
"name": "react-google-places-suggest",
"version": "3.12.3",
"author": {
"name": "Cédric Delpoux",
"email": "[email protected]"
},
"description": "React component to select geolocated suggestion from Google Maps Places API",
"files": [
"es",
"lib",
"umd"
],
"homepage": "https://github.com/cedricdelpoux/react-google-places-suggest#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cedricdelpoux/react-google-places-suggest.git"
},
"bugs": {
"url": "https://github.com/cedricdelpoux/react-google-places-suggest/issues"
},
"keywords": [
"react",
"google",
"maps",
"places",
"googlemaps",
"geosuggest"
],
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"deploy": "gh-pages -d demo/dist",
"lint": "eslint src demo/src",
"precommit": "lint-staged",
"prepublishOnly": "yarn build",
"start": "nwb serve-react-demo --port 1190",
"test": "jest --config jest.config.json --colors --no-cache",
"test:watch": "yarn test -- --watch"
},
"dependencies": {
"styled-components": "^5.2.1"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.3.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.3.0",
"gh-pages": "^1.0.0",
"html-loader": "^0.5.1",
"husky": "^0.14.3",
"jest": "^24.9.0",
"jest-css-modules": "^1.1.0",
"lint-staged": "^4.0.2",
"markdown-loader": "^2.0.1",
"nwb": "^0.23.0",
"prettier": "^1.5.3",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-addons-test-utils": "^15.6.2",
"react-demo-page": "^0.3.5",
"react-dom": "^16.12.0",
"react-google-maps-loader": "^4.0.0",
"react-test-renderer": "^16.12.0"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0"
}
}