-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
{
"name": "react-native-easy-state-view",
"version": "1.0.1",
"description": "Fully customizable State View with plug & play usage for React Native.",
"keywords": [
"react-native",
"easy-state-view",
"state",
"view",
"javascript",
"ui-lib",
"rn"
],
"homepage": "https://www.freakycoder.com",
"bugs": "https://github.com/WrathChaos/react-native-easy-state-view/issues",
"main": "./build/dist/StateView.js",
"repository": "git@github.com:WrathChaos/react-native-easy-state-view.git",
"author": "Kuray (FreakyCoder) <kurayogun@gmail.com>",
"license": "MIT",
"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": {
"@freakycoder/react-native-bounceable": ">= 0.2.4"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-native": "^0.72.0",
"react-native-typescript-transformer": "^1.2.13",
"typescript": "^5.0.2",
"@react-native-community/eslint-config": "^3.0.0",
"eslint": "^8.0.0",
"eslint-config-airbnb": "^19.0.0",
"husky": "^8.0.1",
"lint-staged": "^15.0.2",
"prettier": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"eslint src/*.js --fix-dry-run"
]
},
"dependencies": {
"@freakycoder/react-native-bounceable": "^1.0.2"
}
}