This repository has been archived by the owner on Oct 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "react-native-wrapped-text",
"version": "1.2.2",
"description": "react native word wrap text component for support korean",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Bang9/react-native-wrapped-text"
},
"scripts": {
"build": "tsc",
"deploy": "yarn fix && tsc && npm publish",
"fix": "yarn fix:tslint && yarn fix:prettier",
"fix:tslint": "tslint --project tsconfig.json --fix",
"fix:prettier": "prettier --write \"**/*.{ts,tsx,js}\"",
"lint": "yarn lint:tslint && yarn lint:prettier",
"lint:tslint": "tslint --project tsconfig.json",
"lint:prettier": "prettier --check \"**/*.{ts,tsx,js}\""
},
"husky": {
"hooks": {
"pre-commit": "yarn fix:tslint && pretty-quick --staged"
}
},
"author": "bang9 <gusrn1423@naver.com> (https://github.com/bang9)",
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-native": ">=0.54"
},
"devDependencies": {
"@types/react": "^16.9.11",
"@types/react-native": "^0.60.22",
"husky": "^3.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2"
},
"keywords": [
"react",
"react-native",
"word-wrap",
"line-break",
"korean"
],
"dependencies": {}
}