-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
114 lines (114 loc) · 3.75 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "react-windy-leaflet",
"version": "0.2.0",
"description": "React components for Windy API using react-leaflet",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"sideEffects": false,
"scripts": {
"clean": "rimraf lib es dist",
"build:cjs": "babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=jsnext babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=rollup NODE_ENV=development rollup -c",
"build:umd:min": "cross-env BABEL_ENV=rollup NODE_ENV=production rollup -c",
"build:flow": "flow-copy-source src lib && flow-copy-source src es",
"build": "npm run clean && npm run build:cjs && npm run build:es && npm run build:flow && npm run build:umd && npm run build:umd:min",
"jest": "cross-env BABEL_ENV=development NODE_ENV=test jest",
"jest:watch": "cross-env BABEL_ENV=development NODE_ENV=test jest --watch",
"lint": "eslint ./example ./src",
"flow:install": "flow-typed install --ignoreDeps=dev",
"flow": "flow check",
"test": "npm run lint && npm run flow && npm run jest",
"test:watch": "npm run lint && npm run flow && npm run jest:watch",
"start": "npm run test && npm run build",
"prepublishOnly": "npm run build",
"examples": "webpack serve --config ./example/webpack.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cristianob/react-windy-leaflet"
},
"keywords": [
"react-component",
"react",
"leaflet",
"map"
],
"author": "Cristiano Costa <cristiano@cristianocosta.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cristianob/react-windy-leaflet/issues"
},
"homepage": "https://github.com/cristianob/react-windy-leaflet",
"files": [
".babelrc",
"dist/*",
"es/*",
"lib/*",
"src/*"
],
"dependencies": {
"@babel/runtime": "^7.4.4",
"fast-deep-equal": "^2.0.1",
"hoist-non-react-statics": "^3.3.0",
"leaflet.antimeridian": "^1.0.0",
"react-css-component": "^1.0.2",
"warning": "^4.0.3"
},
"peerDependencies": {
"leaflet": "1.4.0",
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-transform-proto-to-assign": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/plugin-transform-strict-mode": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-dev-expression": "^0.2.1",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-flowtype": "^3.8.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"file-loader": "^3.0.1",
"flow-bin": "^0.98.1",
"flow-copy-source": "^2.0.4",
"flow-typed": "^2.5.1",
"jest": "^24.8.0",
"leaflet": "1.4.0",
"prettier": "^1.17.0",
"prettier-eslint": "^8.8.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.6.2",
"rollup": "^1.11.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^6.0.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-middleware": "^5.3.3",
"webpack-dev-server": "^4.10.0",
"webpack-hot-middleware": "^2.25.2"
},
"jest": {
"collectCoverage": true
}
}