-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.08 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
{
"name": "react-leaflet-kml",
"version": "2.1.2",
"description": "React leaflet wrapper of leaflet-kml",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc && npm run minify",
"minify": "uglifyjs --compress --mangle --output lib/index.min.js -- lib/index.js",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"cover": "jest --config jestconfig.json --coverage && cat ./coverage/lcov.info | coveralls"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aviklai/react-leaflet-kml.git"
},
"keywords": [
"React",
"Leaflet",
"kml",
"leaflet-kml",
"typescript",
"react-leaflet-v3"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/aviklai/react-leaflet-kml/issues"
},
"homepage": "https://github.com/aviklai/react-leaflet-kml#readme",
"peerDependencies": {
"leaflet": ">=1.5.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"react-leaflet": ">=3.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/leaflet": "^1.7.11",
"@types/node": "^18.0.0",
"@types/react": "^16.8.7",
"@types/react-dom": "^16.8.2",
"@types/react-test-renderer": "^16.9.3",
"coveralls": "^3.0.3",
"jest": "^28.0.3",
"jest-environment-jsdom": "^28.1.0",
"leaflet": "^1.8.0",
"prettier": "^1.16.4",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-leaflet": ">=3.0.0",
"react-test-renderer": "^16.14.0",
"ts-jest": "^28.0.3",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5",
"uglify-js": "^3.5.15"
},
"dependencies": {
"leaflet-kml": "^1.0.1"
}
}