-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.5 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
{
"name": "@20tab/leaflet-polydiff",
"version": "1.0.0",
"description": "Leaflet layer for efficient data fetching.",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"module": "./dist/index.js",
"scripts": {
"start": "webpack serve --open --mode development",
"test": "jest",
"e2e": "cypress open",
"lint": "eslint .",
"build:esm": "tsc",
"prepare": "husky install"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/20tab/leaflet-polydiff.git"
},
"keywords": [
"leaflet",
"leaflet-plugin",
"leaflet-polydiff",
"leaflet-diff",
"turf",
"polygon",
"polygon-diff"
],
"author": {
"name": "Valentino Gagliardi",
"email": "[email protected]",
"url": "https://www.20tab.com/en/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/20tab/leaflet-polydiff/issues"
},
"homepage": "https://github.com/20tab/leaflet-polydiff#readme",
"devDependencies": {
"@turf/bbox-polygon": "^6.5.0",
"@turf/difference": "^6.5.0",
"@turf/union": "^6.5.0",
"@types/jest": "^28.1.1",
"@types/leaflet": "^1.7.10",
"@types/randomcolor": "^0.5.6",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"cypress": "^9.3.1",
"eslint": "^8.17.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"leaflet": "^1.8.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.4",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.2"
},
"peerDependencies": {
"@turf/bbox-polygon": "^6.5.0",
"@turf/difference": "^6.5.0",
"@turf/union": "^6.5.0",
"leaflet": "^1.8.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testMatch": [
"**/__tests__/**/*.(test|spec).ts?(x)"
],
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**"
],
"coverageThreshold": {
"global": {
"lines": 90
}
}
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/consistent-type-imports": "error"
}
},
"eslintIgnore": [
"node_modules",
"dist"
]
}