forked from alex3165/react-mapbox-gl
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
106 lines (106 loc) · 2.99 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
{
"name": "@sixfold/react-mapbox-gl",
"version": "5.3.0",
"description": "A React binding of mapbox-gl-js",
"main": "lib/index.js",
"module": "lib-esm/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint .",
"build": "npm run lint && npm run test && npm run build:commonjs && npm run build:esm",
"build:commonjs": "tsc -p tsconfig-cjs.json",
"build:esm": "tsc -p tsconfig-esm.json",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run clean && npm run build",
"version": "npm run build",
"postversion": "git push && git push --tags",
"prettify": "prettier --write src/*.ts src/*.tsx src/**/*.ts src/**/*.tsx example/src/**/*.ts example/src/**/*.tsx",
"precommit": "npm run prettify && cd example && node generateRaws.js",
"prepush": "npm run build",
"prepare": "echo \"preparing\" && npm run build",
"authenticate": "npx google-artifactregistry-auth"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "jsdom",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"setupFilesAfterEnv": [
"<rootDir>/src/jest/setupFile.ts"
],
"verbose": true
},
"files": [
"lib",
"lib-esm",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alex3165/react-mapbox-gl.git"
},
"keywords": [
"mapbox",
"react",
"map",
"webgl",
"mapbox-gl",
"react-component"
],
"author": "Alexandre Rieux",
"license": "MIT",
"bugs": {
"url": "https://github.com/alex3165/react-mapbox-gl/issues"
},
"homepage": "https://github.com/alex3165/react-mapbox-gl#readme",
"dependencies": {
"@turf/bbox": "4.7.3",
"@turf/helpers": "4.7.3",
"@types/supercluster": "^5.0.1",
"deep-equal": "1.0.1",
"supercluster": "^7.0.0"
},
"peerDependencies": {
"mapbox-gl": "^1.12.0",
"prop-types": "^15.6.2",
"react": "^16.11.0 || ^17.0.2 || ^18.2.0",
"react-dom": "^16.11.0 || ^17.0.2 || ^18.2.0"
},
"devDependencies": {
"@sixfold/eslint-plugin": "^2.2.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/core-js": "0.9.43",
"@types/deep-equal": "1.0.1",
"@types/geojson": "7946.0.4",
"@types/jest": "29.5.10",
"@types/mapbox-gl": "^1.12.8",
"@types/node": "^18.17.19",
"@types/prettier": "1.10.0",
"@types/prop-types": "15.5.6",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"eslint": "^8.54.0",
"husky": "^0.14.3",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mapbox-gl": "^1.12.0",
"prettier": "^3.1.0",
"prop-types": "15.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "18.2.0",
"ts-jest": "29.1.1",
"typescript": "5.2.2"
}
}