-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 1.75 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
{
"name": "react-native-smart-text",
"version": "0.3.2",
"description": "A starter template for building a module in TypeScript and publishing to NPM",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\"",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\" \"src/**/*.js\"",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"pre-commit": "lint-staged",
"postinstall": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukebrandonfarrell/react-native-smart-text.git"
},
"keywords": [
"npm",
"module",
"component",
"nesting",
"react",
"react-native",
"open-source",
"emojis",
"markdown",
"text"
],
"author": "Luke Brandon Farrell",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukebrandonfarrell/react-native-smart-text/issues"
},
"homepage": "https://github.com/lukebrandonfarrell/react-native-smart-text#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/react-native": "^0.64.9",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"pinst": "^2.1.6",
"prettier": "^1.19.1",
"react": "^16.9.0",
"semantic-release": "^17.4.3",
"typescript": "^3.9.9",
"@types/react": "^16.9.2"
},
"dependencies": {
"lodash.flatten": "^4.4.0",
"lodash.get": "^4.4.2",
"lodash.isstring": "^4.0.1",
"lodash.map": "^4.6.0",
"node-emoji": "^1.10.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.js": [
"npm run format",
"tsc",
"git add"
]
}
}