forked from joshswan/react-native-autolink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.47 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": "react-native-autolink",
"version": "3.0.0",
"description": "Autolinking component for React Native",
"author": "Josh Swan <[email protected]>",
"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",
"release": "release-it",
"test": "jest"
},
"dependencies": {
"autolinker": "^3.11.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@release-it/conventional-changelog": "^1.1.0",
"@types/jest": "^25.1.2",
"@types/react": "^16.9.19",
"@types/react-native": "^0.61.12",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^4.2.1",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"react": "16.9.0",
"react-native": "^0.61.5",
"react-test-renderer": "^16.12.0",
"release-it": "^12.4.3",
"rimraf": "^3.0.1",
"typescript": "^3.7.5"
},
"peerDependencies": {
"react-native": ">=0.25.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!(react-native|autolinker)/)"
]
},
"jest-junit": {
"outputDirectory": "./artifacts/jest",
"outputName": "results.xml"
},
"release-it": {
"git": {
"commitMessage": "chore: release %s",
"tagName": "v%s"
},
"npm": {
"publish": true
},
"github": {
"release": true,
"releaseName": "${version}"
},
"hooks": {
"after:bump": "rimraf dist && yarn build"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits"
}
}
}
}