-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
120 lines (120 loc) · 3.2 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "react-native-magnus",
"version": "1.0.63",
"description": "A Utility-First React Native UI Framework",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index.tsx",
"source": "src/index.tsx",
"files": [
"src",
"lib",
"android",
"ios",
"react-native-magnus.podspec"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint --ext .js,.ts,.tsx .",
"prepare": "bob build && husky install",
"pre-commit": "pretty-quick --staged && yarn typescript",
"release": "release-it",
"example": "yarn --cwd example",
"docs": "yarn --cwd docs",
"bootstrap": "yarn example && yarn docs && yarn"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/jsartisan/react-native-magnus",
"author": "jsartisan <[email protected]> (https://github.com/jsartisan)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsartisan/react-native-magnus/issues"
},
"homepage": "https://github.com/jsartisan/react-native-magnus#readme",
"dependencies": {
"color": "^4.2.3",
"deepmerge": "^4.2.2",
"validate-color": "^2.2.1"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@commitlint/config-conventional": "^17.1.0",
"@react-native-community/eslint-config": "^2.0.0",
"@release-it/conventional-changelog": "^5.1.0",
"@testing-library/react-native": "^11.0.0",
"@types/color": "^3.0.3",
"@types/jest": "^29.0.2",
"@types/react": "18.0.0",
"@types/react-native": "0.70.0",
"@types/react-native-vector-icons": "^6.4.12",
"@types/react-test-renderer": "18.0.0",
"commitlint": "^17.1.2",
"editorconfig": "^0.15.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "8.0.0",
"jest": "^29.0.3",
"metro-react-native-babel-preset": "^0.72.2",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.0",
"react-native-animatable": "^1.3.3",
"react-native-builder-bob": "^0.18.3",
"react-native-modal": "13.0.1",
"react-native-vector-icons": "9.2.0",
"react-test-renderer": "18.1.0",
"release-it": "^15.4.1",
"typescript": "^4.8.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-animatable": "1.3.3",
"react-native-modal": "13.0.1",
"react-native-vector-icons": "9.2.0"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/",
"<rootDir>/docs/"
]
},
"release-it": {
"git": {
"requireUpstream": false,
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}