This repository was archived by the owner on Sep 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.35 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.35 KB
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
{
"name": "react-native-capsize",
"author": "Tien Pham",
"description": "Flipping how we define typography in React Native",
"version": "0.2.2",
"license": "MIT",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.ts",
"source": "src/index.ts",
"types": "lib/typescript/index.d.ts",
"scripts": {
"prepare": "bob build && husky install",
"tsc": "tsc --noEmit",
"lint": "eslint src --ext ts,tsx"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.26.0",
"eslint-config-tienphaw": "^1.4.0",
"husky": "^6.0.0",
"prettier": "^2.3.0",
"react": "16.13.1",
"react-native": "0.63.4",
"react-native-builder-bob": "^0.18.1",
"typescript": "^4.2.4"
},
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"keywords": [
"react",
"react-native",
"capsize",
"typography"
],
"repository": {
"type": "git",
"url": "https://github.com/tienphaw/react-native-capsize.git"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}