This repository has been archived by the owner on Nov 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
62 lines (62 loc) · 1.98 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
{
"name": "react-leaflet-shapefile",
"version": "2.0.0",
"description": "React component for leaflet-shapefile",
"main": "dist/react-leaflet-shapefile.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean:lib": "rm -Rf ./lib",
"compile:lib": "babel src --out-dir lib",
"build:lib": "npm run clean:lib && npm run compile:lib",
"build:dist": "webpack src/index.js dist/react-leaflet-shapefile.js & webpack -p src/index.js dist/react-leaflet-shapefile.min.js",
"build": "npm run build:lib && npm run build:dist",
"example": "webpack-dev-server --config ./example/webpack.config.js",
"lint": "eslint ./src",
"release:major": "npm version major && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:patch": "npm version patch && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:Charmatzis/react-leaflet-shapefile.git"
},
"keywords": [
"react",
"leaflet",
"shapefile"
],
"author": "Christos Charmatzis",
"license": "MIT",
"bugs": {
"url": "https://github.com/Charmatzis/react-leaflet-shapefile/issues"
},
"homepage": "https://github.com/Charmatzis/react-leaflet-shapefile#readme",
"peerDependencies": {
"catiline": "2.9.3",
"leaflet": "^1.0.2",
"react-leaflet": "^1.0.1",
"react": "^15.4.1",
"shpjs": "^3.3.2"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.1.18",
"catiline": "2.9.3",
"eslint": "^3.8.1",
"eslint-plugin-react": "^6.4.1",
"jquery": "*",
"leaflet": "^1.0.2",
"react": "^15.4.1",
"requirejs": "^2.3.2",
"react-dom": "^15.4.1",
"react-leaflet": "^1.0.1",
"shpjs": "^3.3.2",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.12.1"
}
}