-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
76 lines (76 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
75
76
{
"name": "react-native-sfsymbols",
"version": "1.2.1",
"description": "Use SF Symbols in iOS apps",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"src",
"lib",
"ios",
"android",
"react-native-sfsymbols.podspec"
],
"keywords": [
"sf",
"symbols",
"icons",
"react",
"native",
"sfsymbols",
"symbol",
"ios"
],
"author": "Birkir Gudjonsson <birkir.gudjonsson@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/birkir/react-native-sfsymbols/issues"
},
"homepage": "https://github.com/birkir/react-native-sfsymbols#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/birkir/react-native-sfsymbols.git"
},
"scripts": {
"prepublish": "yarn run build",
"prettier": "prettier --write '**/*.{json,md,js,jsx,ts,tsx}'",
"lint": "yarn run eslint",
"eslint": "eslint --fix 'src/**/*.{ts,tsx}'",
"clean": "rm -rf lib",
"build": "tsc",
"test": "jest"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/runtime": "^7.14.0",
"@react-native-community/eslint-config": "^3.0.0",
"@types/jest": "^26.0.23",
"@types/react-native": "^0.64.10",
"@types/react-test-renderer": "^17.0.1",
"@types/react": "^17.0.11",
"babel-jest": "^27.0.5",
"eslint": "^7.29.0",
"husky": "^6.0.0",
"metro-react-native-babel-preset": "^0.66.0",
"prettier": "^2.3.1",
"react": "^17.0.2",
"react-native": "^0.64.2",
"react-test-renderer": "^17.0.2",
"typescript": "^4.3.4"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}