-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "react-native-misc",
"version": "0.9.0",
"private": false,
"description": "React Native library",
"keywords": [
"react"
],
"homepage": "https://github.com/iliubinskii/react-native-misc",
"bugs": {
"url": "https://github.com/iliubinskii/react-native-misc/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/iliubinskii/react-native-misc.git"
},
"license": "ISC",
"author": "Ilia Liubinskii <ilia.liubinskii@gmail.com> (https://github.com/iliubinskii)",
"main": "dist/index.js",
"module": "es/index.js",
"files": [
"/dist",
"/es",
"/src",
"!/dist/dev",
"!/es/dev",
"!/src/dev"
],
"scripts": {
"build-commonjs": "cf dist && tsc --project tsconfig-build.json",
"build-doc": "typedoc --plugin typedoc-plugin-markdown src && cpy assets/docs/static/* docs",
"build-es": "cf es && tsc --project tsconfig-build-es.json",
"format": "prettier --log-level warn --write \"**/*.{css,html,json,less,postcss,scss}\"",
"install-deps": "npm install --no-audit --save-prod --strict-peer-deps",
"install-deps-clean": "npm install-clean --no-audit --save-prod --strict-peer-deps",
"install-dev-deps": "npm install --no-audit --save-dev --strict-peer-deps",
"install-dev-deps-clean": "npm install-clean --no-audit --save-dev --strict-peer-deps",
"lint": "eslint --fix --max-warnings=0 **/*.{cjs,cjsx,js,jsx,mjs,mjsx,ts,tsx}",
"lint-commit-msg": "commitlint --edit",
"lint-markdown": "markdownlint *.md",
"lint-no-fix": "eslint --max-warnings=0 **/*.{cjs,cjsx,js,jsx,mjs,mjsx,ts,tsx}",
"lint-profile": "cross-env TIMING=1 eslint --max-warnings=0 **/*.{cjs,cjsx,js,jsx,mjs,mjsx,ts,tsx}",
"lint-staged-files": "lint-staged",
"ncu-check": "ncu --dep=dev,peer,prod",
"ncu-upgrade": "ncu --dep=dev,peer,prod --upgrade && npm run install-deps",
"prepare": "husky",
"preversion:add": "git add .",
"preversion:build": "run-s build-commonjs build-doc build-es",
"preversion:fix": "run-p format lint-markdown",
"preversion:install": "npm run install-deps",
"preversion:lint": "run-p lint-no-fix type-check",
"preversion:test": "npm test",
"push-tags": "cross-env GIT_SSH_COMMAND=\"ssh -i ../.ssh/id_rsa\" git push --tags",
"test": "cf coverage/lcov-report && jest --coverage",
"type-check": "tsc --incremental false --noEmit",
"update": "npm update --no-audit --strict-peer-deps",
"preversion": "run-s preversion:install preversion:fix preversion:lint preversion:test preversion:build preversion:add"
},
"dependencies": {
"@types/color": "^3",
"color": "^4",
"lodash-commonjs-es": "^1.2.0",
"react-misc": "^0.5.0",
"tslib": "^2",
"typescript-misc": "^1.3.0"
},
"devDependencies": {
"@jest/expect": "^29",
"@jest/globals": "^29",
"@types/jest": "^29",
"eslint-config-union": "^1.1.0",
"jest": "^29",
"jest-extended": "^4",
"ts-jest": "^29",
"typescript": "^5"
},
"peerDependencies": {
"@expo/vector-icons": "^14",
"@react-native-community/slider": "^4",
"@react-native-masked-view/masked-view": "^0.3",
"@react-navigation/bottom-tabs": "^6",
"@react-navigation/native": "^6",
"@types/react": "^18",
"react": "^18",
"react-native": "^0.74",
"react-native-country-flag": "^2",
"react-native-gesture-handler": "^2",
"react-native-keyboard-controller": "^1",
"react-native-linear-gradient": "^2",
"react-native-paper": "^5",
"react-native-reanimated": "^3",
"react-native-sound": "^0.11",
"react-native-status-bar-height": "^2",
"react-native-svg": "^15",
"react-native-swipe-gestures": "^1"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"publishConfig": {
"access": "public"
}
}