-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
60 lines (60 loc) · 2.01 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
{
"name": "react-native-dynamic-search-bar",
"version": "2.0.2",
"description": "Fully customizable and dynamic Search Bar for React Native.",
"keywords": [
"gradient",
"card",
"search",
"search-bar",
"dynamic",
"dynamic-search-bar",
"FreakyCoder",
"freakycoder",
"kuray",
"Kuray",
"react",
"react-native",
"javascript",
"ui-lib",
"rn"
],
"homepage": "https://www.freakycoder.com",
"bugs": "https://github.com/WrathChaos/react-native-dynamic-search-bar/issues",
"main": "./build/dist/SearchBar.js",
"repository": "[email protected]:WrathChaos/react-native-dynamic-search-bar.git",
"author": "Kuray (FreakyCoder) <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react-native-spinkit": ">= 1.5.0",
"@freakycoder/react-native-bounceable": ">= 0.2.2"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@react-native-community/eslint-config": "^3.0.2",
"@types/react": "^18.0.0",
"@types/react-native": "^0.72.0",
"eslint": "^9.0.0",
"eslint-config-airbnb": "^19.0.4",
"husky": "^9.0.1",
"lint-staged": "^15.0.1",
"npm-post-install": "0.0.2",
"prettier": "^3.0.0",
"prettier-format": "^4.0.0",
"react-native-typescript-transformer": "^1.2.13",
"typescript": "^5.0.2"
},
"scripts": {
"build": "cd lib && tsc && cp ../package.json ../build/dist/ && Echo Build completed!",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"prettier": "cd lib && npx prettier --write . && git add .",
"prepare": "husky install",
"husky:setup": "npx husky-init && npm run husky:commitlint && npm run husky:prettier",
"husky:commitlint": "npx husky add .husky/commit-msg 'npx --no-install commitlint --edit'",
"husky:prettier": "npx husky add .husky/pre-commit 'npm run prettier'"
}
}