-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
80 lines (80 loc) · 2.12 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
{
"name": "react-google-maps-loader",
"version": "4.3.0",
"author": {
"name": "Cédric Delpoux",
"email": "[email protected]"
},
"description": "React component to use google maps services into your react applications using a render prop",
"files": [
"css",
"es",
"lib",
"umd"
],
"homepage": "https://github.com/cedricdelpoux/react-google-maps-loader#readme",
"keywords": [
"react",
"google",
"maps",
"googlemaps",
"loader",
"decorator"
],
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"style": "umd/index.css",
"repository": {
"type": "git",
"url": "git+https://github.com/cedricdelpoux/react-google-maps-loader.git"
},
"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",
"prepublish": "yarn run clean && yarn run build",
"start": "nwb serve-react-demo --port 1190",
"test": "jest --colors --no-cache",
"test:watch": "yarn test -- --watch"
},
"dependencies": {
"little-loader": "~0.2.0",
"prop-types": "^15.7.2",
"query-string": "^6.12.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.4.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"gh-pages": "^2.2.0",
"html-loader": "^1.1.0",
"husky": "^4.2.5",
"jest": "^25.4.0",
"jest-css-modules": "^2.1.0",
"lint-staged": "^10.1.7",
"markdown-loader": "^5.1.0",
"nwb": "^0.24.5",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-demo-page": "^0.3.6",
"react-dom": "^16.13.1",
"react-google-map": "^3.1.0",
"react-test-renderer": "^16.13.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}