forked from PaulLeCam/react-leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.01 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
{
"name": "react-leaflet",
"version": "0.8.0-rc.1",
"description": "React components for Leaflet maps",
"main": "lib/index.js",
"scripts": {
"clean": "rm -Rf ./lib",
"compile": "npm run clean && babel src --out-dir lib",
"watch": "babel src --watch --out-dir lib",
"test": "jest --coverage ./lib",
"start": "npm run compile && npm test",
"onchange": "onchange 'lib/*.js' 'lib/**/*.js' -- npm run lintAndTest",
"dev": "npm run watch & npm run onchange",
"prepublish": "npm ls && npm run lint && npm test",
"example:compile": "gulp",
"example:watch": "gulp watch:example",
"lint": "eslint ./src",
"lintAndTest": "npm run lint && jest ./lib"
},
"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": "^3.0.0"
},
"peerDependencies": {
"leaflet": "^0.7.0",
"react": "^0.14.0-rc1",
"react-dom": "^0.14.0-rc1"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.2",
"babelify": "^6.3.0",
"browserify": "^11.0.1",
"eslint": "^1.4.3",
"eslint-plugin-react": "^3.3.1",
"gulp": "^3.9.0",
"gulp-load-plugins": "^0.10.0",
"gulp-util": "^3.0.6",
"gulp-webserver": "^0.9.1",
"jest-cli": "^0.5.5",
"leaflet": "^0.7.5",
"onchange": "^2.0.0",
"react": "^0.14.0-rc1",
"react-dom": "^0.14.0-rc1",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.4.0"
},
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/jest-cli",
"<rootDir>/node_modules/leaflet",
"<rootDir>/node_modules/lodash",
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom"
]
}
}