-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
74 lines (74 loc) · 1.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
{
"name": "react-native-remix-icon",
"description": "Remix Icon for React Native",
"author": "Ajay Sivan",
"version": "4.5.0",
"main": "src/index.js",
"types": "src/index.d.ts",
"homepage": "https://github.com/ajayesivan/react-native-remix-icon",
"bugs": {
"url": "https://github.com/ajayesivan/react-native-remix-icon/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ajayesivan/react-native-remix-icon.git"
},
"keywords": [
"react-native-remix-icon",
"remixicon",
"remixicon-rn",
"react-native",
"icons"
],
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"svg-to-rn": "npx @svgr/cli --native -d src/icons icons --svg-props 'width={24}' --svg-props 'height={24}'"
},
"peerDependencies": {
"react-native-svg": "*"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^1.1.0",
"@svgr/cli": "^8.1.0",
"babel-jest": "^25.1.0",
"eslint": "^6.5.1",
"husky": "^4.3.8",
"jest": "^25.1.0",
"lint-staged": "^10.5.3",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^2.2.1",
"react": "16.13.1",
"react-native": "0.63.4",
"react-native-svg": "^15.8.0",
"react-test-renderer": "16.13.1"
},
"jest": {
"preset": "react-native"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "MIT",
"files": [
"src"
],
"packageManager": "[email protected]",
"dependencies": {
"camelcase": "^8.0.0"
}
}