forked from WrathChaos/react-native-single-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.74 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
{
"name": "@freakycoder/react-native-single-select",
"version": "0.4.1",
"description": "Customizable & Easy to Use Single Select Library for React Native",
"main": "./build/dist/RNSingleSelect.js",
"repository": "[email protected]:WrathChaos/react-native-single-select.git",
"author": "FreakyCoder <[email protected]>",
"license": "MIT",
"homepage": "https://www.freakycoder.com",
"bugs": "https://github.com/WrathChaos/react-native-single-select/issues",
"keywords": [
"dark",
"dark-mode",
"theme",
"theming",
"single-select",
"picker",
"single-select-picker",
"FreakyCoder",
"freakycoder",
"kuray",
"Kuray",
"react",
"react-native",
"javascript",
"ui-lib",
"rn"
],
"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"
},
"peerDependencies": {
"react": ">= 16.x.x",
"react-native": ">= 0.55.x",
"react-native-spinkit": ">= 1.5.1"
},
"devDependencies": {
"@types/react": "^16.9.22",
"@types/react-native": "^0.63.0",
"react-native-typescript-transformer": "^1.2.13",
"typescript": "^3.7.4",
"@react-native-community/eslint-config": "^0.0.5",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"eslint src/*.js --fix-dry-run"
]
}
}