-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
96 lines (96 loc) · 3.18 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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "react-mapbox-wrapper",
"version": "2.6.1",
"description": "Mapbox GL Javascript wrapper for ReactJS",
"repository": {
"type": "git",
"url": "git+https://github.com/MeilleursAgents/react-mapbox-wrapper.git"
},
"main": "build/index.js",
"scripts": {
"peers": "npm-install-peers",
"format:file": "prettier-eslint --write --",
"format": "npm run format:file \"$(pwd)/src/**/**.js\" \"$(pwd)/src/**/**.jsx\"",
"lint:file": "eslint --fix --ext .jsx,.js --",
"lint": "npm run lint:file src",
"test": "nyc --all mocha \"./src/**/*.test.js\" \"./src/**/*.test.jsx\"",
"test:file": "mocha",
"doc": "esdoc -c esdoc.json",
"start": "webpack --watch",
"build": "webpack",
"ci": "npm run format && npm run lint && npm run test && npm run doc && npm run build && codecov"
},
"keywords": [
"react",
"component",
"library",
"mapboxgl-js",
"webpack"
],
"author": "MeilleursAgents",
"license": "MIT",
"homepage": "http://meilleursagents.github.io/react-mapbox-wrapper",
"engines": {
"node": ">=8.0.0"
},
"peerDependencies": {
"@turf/circle": "^6.0.0",
"mapbox-gl": "^0.46.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@babel/register": "7.12.10",
"babel-cli": "6.26.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-plugin-module-resolver": "4.0.0",
"babel-template": "6.26.0",
"babel-types": "6.26.0",
"chai": "4.2.0",
"codecov": "3.8.0",
"css-loader": "5.0.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"esdoc": "1.1.0",
"esdoc-coverage-plugin": "1.1.0",
"esdoc-ecmascript-proposal-plugin": "1.0.0",
"esdoc-es7-plugin": "0.0.3",
"esdoc-jsx-plugin": "1.0.0",
"esdoc-plugin-require-coverage": "0.1.2",
"esdoc-publish-html-plugin": "1.1.2",
"esdoc-standard-plugin": "1.0.0",
"eslint": "7.17.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "7.1.0",
"eslint-import-resolver-webpack": "0.13.0",
"eslint-loader": "4.0.2",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.21.4",
"ignore-styles": "5.0.1",
"jsdom": "16.4.0",
"mocha": "8.2.1",
"npm-install-peers": "1.2.1",
"nyc": "15.1.0",
"prettier-eslint-cli": "5.0.0",
"sinon": "9.2.0",
"sinon-chai": "3.5.0",
"style-loader": "2.0.0",
"webpack": "5.1.3",
"webpack-cli": "4.0.0",
"webpack-node-externals": "2.5.2"
},
"bugs": {
"url": "https://github.com/MeilleursAgents/react-mapbox-wrapper/issues"
},
"directories": {
"example": "examples"
}
}