forked from hectahertz/react-native-typography
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "@react-native-oh-tpl/react-native-typography",
"version": "1.4.1-0.0.1",
"description":
"Pixel–perfect, native–looking typographic styles for React Native",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "src/index.js",
"sideEffects": false,
"files": ["src/", "dist/"],
"directories": {
"example": "example"
},
"harmony": {
"alias": "react-native-typography"
},
"scripts": {
"build":
"rm -rf dist && babel src --out-dir dist && cp ./src/index.d.ts ./dist",
"format": "prettier --write '**/*.js'",
"precommit": "lint-staged",
"test": "echo \\\"Error: no test specified\\\" && exit 1"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/hectahertz/react-native-typography.git"
},
"keywords": [
"react-native",
"react",
"typography",
"style",
"styles",
"typeface",
"font"
],
"author": "hectahertz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hectahertz/react-native-typography/issues"
},
"homepage": "https://github.com/hectahertz/react-native-typography#readme",
"dependencies": {},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-react-native": "^4.0.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "1.9.1"
}
"dependencies": {
"react-native-typography": "1.4.1"
},
}