-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
101 lines (101 loc) · 2.49 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
{
"name": "react-native-autolink",
"version": "4.2.0",
"description": "Autolinking component for React Native",
"author": "Josh Swan <josh@disruptivelabs.io>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joshswan/react-native-autolink"
},
"bugs": {
"url": "https://github.com/joshswan/react-native-autolink/issues"
},
"keywords": [
"react native",
"autolinking",
"autolink",
"linking"
],
"files": [
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"lint": "tsc --noEmit && eslint src --ext .ts,.tsx",
"prepare": "husky install",
"release": "release-it",
"test": "jest"
},
"dependencies": {
"autolinker": "^3.16.2"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-typescript": "^7.23.0",
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@release-it/conventional-changelog": "^7.0.2",
"@types/jest": "^29.5.5",
"@types/react": "^18.2.23",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.0.3",
"react": "18.2.0",
"react-native": "^0.72.5",
"react-test-renderer": "18.2.0",
"release-it": "^16.2.1",
"rimraf": "^4.4.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": ">16.8.0",
"react-native": ">=0.25.0"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!(@?react-native.*|autolinker.*)/)"
]
},
"jest-junit": {
"outputDirectory": "./artifacts/jest",
"outputName": "results.xml"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true,
"releaseName": "${version}"
},
"hooks": {
"after:bump": "rimraf dist && yarn build"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits"
}
}
}
}