-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
64 lines (64 loc) · 1.82 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
{
"name": "@fusionworks/ra-google-maps-input",
"version": "0.1.7",
"author": "nzuza",
"private": false,
"main": "index.js",
"homepage": "https://github.com/FusionWorks/react-admin-google-maps#readme",
"description": "React-admin field/input to show markers on a map.",
"license": "ISC",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development --watch",
"postbuild": "node lib/copy_package && node lib/copy_readme",
"patch": "npm version patch -m \"[skip travis] Release version: %s\"",
"prerelease": "npm whoami && npm run patch && npm run build",
"release": "npm publish dist --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FusionWorks/react-admin-google-maps.git"
},
"bugs": {
"url": "https://github.com/FusionWorks/react-admin-google-maps/issues"
},
"keywords": [
"ra",
"react-admin",
"react-google-maps",
"react-admin input",
"react-admin map input",
"ra-input",
"google, maps"
],
"dependencies": {
"react-google-maps": "^9.4.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ra-core": "^2.9.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.46",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.46",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/preset-react": "^7.0.0-beta.46",
"babel-loader": "^8.0.0-beta.0",
"react-scripts": "3.0.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}