-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
80 lines (80 loc) · 2.25 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
{
"name": "@south-paw/react-vector-maps",
"version": "3.2.0",
"description": "A React component for interactive vector maps of the world and 100+ countries",
"keywords": [
"react",
"component",
"map",
"maps",
"svg",
"interactive",
"world",
"country",
"countries"
],
"homepage": "https://react-vector-maps.netlify.com",
"bugs": "https://github.com/South-Paw/react-vector-maps/issues",
"license": "MIT",
"author": {
"name": "Alex Gabites",
"email": "[email protected]",
"url": "http://southpaw.co.nz/"
},
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/South-Paw/react-vector-maps.git"
},
"scripts": {
"clean": "rimraf dist coverage",
"build": "tsup",
"lint:eslint": "eslint src/**/*.{js,ts,tsx}",
"lint:type-check": "tsc --noEmit",
"lint": "npm run lint:type-check && npm run lint:eslint",
"test": "jest --passWithNoTests",
"docs:install": "cd docs && npm i",
"docs:start": "cd docs && npm run start",
"docs:build": "cd docs && npm run build",
"docs:serve": "cd docs && npm run serve",
"docs:clean": "cd docs && npm run clean"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.0.3",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^29.1.1",
"jest-environment-jsdom": "^29.1.1",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"react": "^18.2.0",
"rimraf": "^3.0.2",
"svgson": "^5.2.1",
"ts-jest": "^29.0.2",
"tsup": "^6.2.3",
"typescript": "^4.8.4"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"publishConfig": {
"access": "public"
}
}