forked from Charmatzis/react-leaflet-shapefile
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.66 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-leaflet-shapefile-v2",
"version": "3.0.3",
"description": "React component for leaflet-shapefile",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "npm run build:lib && npm run build:dist && npm run build:dev",
"build:dist": "webpack src/index.js --output dist/react-leaflet-shapefile-v2.min.js",
"build:dev": "webpack src/index.js --mode development --output dist/react-leaflet-shapefile-v2.js",
"build:lib": "npm run compile:lib",
"clean:lib": "rm -Rf ./lib",
"compile:lib": "babel src --out-dir lib",
"example": "webpack-dev-server --config ./example/webpack.config.js",
"prepublishOnly": "npm run build",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TA-Geoforce/react-leaflet-shapefile-v2.git"
},
"keywords": [
"react",
"leaflet",
"shapefile"
],
"author": "T.A. Geoforce <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TA-Geoforce/react-leaflet-shapefile-v2/issues"
},
"homepage": "https://github.com/TA-Geoforce/react-leaflet-shapefile-v2#readme",
"peerDependencies": {
"catiline": "2.9.3",
"leaflet": "^1.7.1",
"react-leaflet": "^3.0.5",
"react": "^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0",
"shpjs": "^3.6.3"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/plugin-transform-proto-to-assign": "^7.13.12",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/plugin-transform-strict-mode": "^7.12.13",
"@babel/preset-env": "^7.14.4",
"@babel/preset-flow": "^7.13.13",
"@babel/preset-react": "^7.13.13",
"@babel/runtime": "^7.14.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"babel-core": "^6.8.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^8.2.2",
"babel-plugin-dev-expression": "^0.2.2",
"babel-polyfill": "^6.0.16",
"babel-preset-es2015": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"catiline": "2.9.3",
"enzyme": "^3.11.0",
"eslint": "^3.8.1",
"eslint-plugin-react": "^6.4.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^27.0.4",
"jquery": "*",
"leaflet": "^1.7.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-leaflet": "^3.0.5",
"requirejs": "^2.3.2",
"shpjs": "^3.3.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
}
}