-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
112 lines (112 loc) · 3.33 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
{
"name": "terra-draw-monorepo",
"version": "1.0.0",
"description": "The monorepo for all core Terra Draw packages",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"docs": "typedoc",
"docs:serve": "serve ./docs",
"prepare": "husky install",
"unused": "knip",
"lint": "eslint --config eslint.config.mjs",
"lint:quiet": "eslint --quiet --config eslint.config.mjs",
"lint:fix": "eslint --fix --config eslint.config.mjs",
"lint:fix:quiet": "eslint --fix --quiet --config eslint.config.mjs",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"format:quiet": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\" --log-level=silent",
"test": "jest --config jest.config.ts",
"test:coverage": "jest --config jest.config.ts --coverage",
"test:nocheck": "jest --config jest.nocheck.config.ts",
"test:nocheck:coverage": "jest --config jest.nocheck.config.ts --coverage"
},
"repository": "JamesLMilner/terra-draw",
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@eslint/json": "0.9.0",
"@eslint/markdown": "6.2.1",
"@swc/jest": "0.2.36",
"@types/geojson": "7946.0.8",
"@types/jest": "29.5.12",
"@types/rbush": "3.0.0",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"commit-and-tag-version": "^12.5.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "7.0.4",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"knip": "5.30.2",
"microbundle": "0.15.0",
"serve": "14.2.4",
"ts-jest": "29.1.2",
"ts-loader": "9.5.1",
"tsx": "4.7.2",
"typedoc": "0.26.11",
"typescript": "5.6.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-empty": [
2,
"never"
],
"scope-enum": [
2,
"always",
[
"terra-draw",
"terra-draw-arcgis-adapter",
"terra-draw-google-maps-adapter",
"terra-draw-leaflet-adapter",
"terra-draw-mapbox-gl-adapter",
"terra-draw-maplibre-gl-adapter",
"terra-draw-openlayers-adapter"
]
]
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"useTabs": true
},
"knip": {
"$schema": "https://unpkg.com/knip@5/schema.json",
"entry": [
"packages/terra-draw/src/terra-draw.ts",
"packages/terra-draw-arcgis-adapter/src/terra-draw-arcgis-adapter.ts",
"packages/terra-draw-google-maps-adapter/src/terra-draw-google-maps-adapter.ts",
"packages/terra-draw-leaflet-adapter/src/terra-draw-leaflet-adapter.ts",
"packages/terra-draw-mapbox-gl-adapter/src/terra-draw-mapbox-gl-adapter.ts",
"packages/terra-draw-maplibre-gl-adapter/src/terra-draw-maplibre-gl-adapter.ts",
"packages/terra-draw-openlayers-adapter/src/terra-draw-openlayers-adapter.ts"
],
"project": [
"packages/terra-draw/src/**/*.ts",
"packages/terra-draw-arcgis-adapter/src/**/*.ts",
"packages/terra-draw-google-maps-adapter/src/**/*.ts",
"packages/terra-draw-leaflet-adapter/src/**/*.ts",
"packages/terra-draw-mapbox-gl-adapter/src/**/*.ts",
"packages/terra-draw-maplibre-gl-adapter/src/**/*.ts",
"packages/terra-draw-openlayers-adapter/src/**/*.ts"
],
"ignore": [
"**/jest.config.ts",
"**/jest.nocheck.config.ts",
"**/.versionrc.cjs"
],
"include": [
"files",
"types"
]
}
}