forked from PaulLeCam/react-leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.35 KB
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
{
"name": "react-leaflet",
"version": "0.3.0",
"description": "React components for Leaflet maps",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"prepublish": "npm ls && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/PaulLeCam/react-leaflet.git"
},
"keywords": [
"react-component",
"react",
"leaflet",
"map"
],
"author": "Paul Le Cam <paul@ulem.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PaulLeCam/react-leaflet/issues"
},
"homepage": "https://github.com/PaulLeCam/react-leaflet",
"dependencies": {
"lodash-node": "^2.4.1"
},
"peerDependencies": {
"leaflet": "^0.7.0",
"react": "^0.12.0"
},
"devDependencies": {
"browserify": "^8.1.1",
"del": "^1.1.1",
"gulp": "^3.8.10",
"gulp-load-plugins": "^0.8.0",
"gulp-react": "^2.0.0",
"gulp-util": "^3.0.1",
"gulp-webserver": "^0.9.0",
"jest-cli": "^0.2.1",
"leaflet": "^0.7.3",
"react": "^0.12.2",
"react-tools": "^0.12.2",
"reactify": "^0.17.1",
"vinyl-source-stream2": "^0.1.1",
"watchify": "^2.2.1"
},
"jest": {
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/leaflet",
"<rootDir>/node_modules/lodash-node",
"<rootDir>/node_modules/react"
]
}
}