forked from yuzhva/react-leaflet-markercluster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.22 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.22 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "react-leaflet-markercluster",
"version": "2.0.0-rc3",
"description": "React wrapper of Leaflet.markercluster for react-laeflet",
"main": "dist/react-leaflet-markercluster.min.js",
"scripts": {
"build:source": "gulp --gulpfile=config/gulpfile.babel.js build",
"build:gh-pages": "gulp --gulpfile=config/gulpfile.babel.js gh-pages:clean && webpack --config=config/webpack.config.babel.js -p",
"start": "webpack-dev-server --config=config/webpack.config.babel.js --open --inline --hot --env dev",
"test": "jest --coverage",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "eslint --ext .js src/",
"lint:scss": "stylelint 'src/**/*.scss' --syntax=scss",
"lint:staged": "lint-staged"
},
"pre-commit": "lint:staged",
"lint-staged": {
"*.js": "lint:js",
"*.scss": "stylelint --syntax=scss"
},
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js"
},
"setupTestFrameworkScriptFile": "<rootDir>/config/tests.config.js",
"collectCoverageFrom": [
"src/**/*.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/YUzhva/react-leaflet-markercluster.git"
},
"keywords": [
"react",
"leaflet",
"react-leaflet",
"markercluster",
"marker",
"cluster"
],
"author": "Yevhen Uzhva",
"license": "MIT",
"bugs": {
"url": "https://github.com/YUzhva/react-leaflet-markercluster/issues"
},
"homepage": "https://github.com/YUzhva/react-leaflet-markercluster#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.4",
"del": "^3.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-clean-css": "^3.6.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-uglify": "^3.0.0",
"html-webpack-plugin": "^2.29.0",
"jest": "^22.1.4",
"leaflet": "^1.3.0",
"leaflet.markercluster": "^1.3.0",
"lint-staged": "^6.1.0",
"node-sass": "^4.5.3",
"npm-sass": "^2.2.1",
"pre-commit": "^1.2.2",
"prop-types": "^15.6.2",
"react": "^16.3",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.3",
"react-highlight": "briancappello/react-highlight#react-v16-compiled",
"react-leaflet": "^2.0.0",
"react-test-renderer": "^16.0.0",
"run-sequence": "^2.0.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.1",
"stylelint": "^8.2.0",
"stylelint-config-sass-guidelines": "^4.1.0",
"stylelint-declaration-use-variable": "^1.6.0",
"stylelint-order": "^0.8.0",
"stylelint-scss": "^2.2.0",
"webpack": "^3.1.0",
"webpack-dev-server": "^2.5.1"
},
"peerDependencies": {
"leaflet": "^1.3.0",
"leaflet.markercluster": "^1.3.0",
"prop-types": "^15.6.2",
"react-leaflet": "^2.0.0"
}
}