-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
103 lines (103 loc) · 2.77 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
{
"name": "@pbe/react-yandex-maps",
"version": "1.2.5",
"description": "Yandex.Maps API bindings for React",
"typings": "typings/index.d.ts",
"main": "index.js",
"source": "src/index.ts",
"module": "dist/react-yandex-maps.esm.js",
"umd:main": "dist/react-yandex-maps.umd.js",
"unpkg": "dist/react-yandex-maps.umd.js",
"files": [
"README.md",
"LICENSE",
"dist",
"typings"
],
"engines": {
"node": ">=16"
},
"scripts": {
"clear": "rm -rf dist",
"prettier": "prettier --write .",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"build": "npm run clear && npm run microbundle:production && size-limit",
"microbundle": "microbundle --jsx React.createElement --name ReactYandexMaps --external react --globals react=React --define process.env.NODE_ENV=\"${NODE_ENV}\"",
"microbundle:production": "cross-env NODE_ENV=production npm run microbundle -- --output ./dist",
"microbundle:develop": "npm run microbundle:production -- --no-compress --watch",
"release": "release-it",
"test": "jest --ci --no-cache",
"test:coverage": "jest --ci --no-cahce --coverage"
},
"peerDependencies": {
"react": "^16.x || ^17.x || ^18.x"
},
"dependencies": {
"@types/yandex-maps": "2.1.29"
},
"devDependencies": {
"@babel/core": "7.18.2",
"@babel/preset-env": "7.18.2",
"@babel/preset-react": "7.12.13",
"@babel/preset-typescript": "7.17.12",
"@size-limit/file": "7.0.8",
"@types/react": "16.14.26",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"babel-jest": "25.0.0",
"babel-loader": "8.2.5",
"cross-env": "7.0.3",
"eslint": "7.1.0",
"eslint-plugin-jest": "22.21.0",
"eslint-plugin-react": "7.32.2",
"husky": "1.3.1",
"jest": "25.0.0",
"lint-staged": "8.2.1",
"microbundle": "0.15.1",
"prettier": "2.8.7",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-test-renderer": "16.11.0",
"release-it": "14.14.3",
"size-limit": "8.2.4",
"typescript": "5.0.2"
},
"keywords": [
"react",
"react-component",
"yandex",
"maps",
"yandex-maps"
],
"sideEffects": false,
"homepage": "https://pbe-react-yandex-maps.vercel.app/",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/R1ZEN/react-yandex-maps.git"
},
"bugs": {
"url": "https://github.com/R1ZEN/react-yandex-maps/issues"
},
"directories": {
"doc": "docs"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test --coverage"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint",
"npm run prettier",
"git add"
],
"*.{json,yml,css,md,mdx,html}": [
"npm run prettier",
"git add"
]
}
}