forked from PaulLeCam/react-leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.47 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
81
82
83
84
{
"name": "react-leaflet",
"version": "1.1.0",
"description": "React components for Leaflet maps",
"main": "lib/index.js",
"scripts": {
"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 --progress",
"build": "npm run build:lib && npm run build:dist",
"watch": "babel src --watch --out-dir lib",
"test": "jest",
"lint": "eslint ./src",
"lintAndTest": "npm run lint && jest",
"flow": "flow",
"start": "npm run lint && npm run flow && npm run test && npm run build",
"dev": "npm run watch & npm run onchange",
"prepublish": "npm ls && npm start",
"examples": "webpack-dev-server --config ./example/webpack.config.babel.js"
},
"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": "^4.0.0",
"warning": "^3.0.0"
},
"peerDependencies": {
"leaflet": "^1.0.0",
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-proto-to-assign": "^6.9.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.5.0",
"eslint": "^3.13.1",
"eslint-config-standard": "^6.1.0",
"eslint-config-standard-jsx": "^3.1.0",
"eslint-config-standard-react": "^4.1.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-standard": "^2.0.1",
"flow-bin": "^0.37.4",
"jest-cli": "^18.1.0",
"leaflet": "^1.0.2",
"lodash-webpack-plugin": "^0.10.7",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-transform-hmr": "^1.0.4",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.1"
},
"jest": {
"collectCoverage": true,
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
}
}
}