-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.4 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
{
"name": "react-native-wait-navigation",
"version": "0.2.3",
"description": "React Native navigation initialization handler",
"keywords": [
"react-native",
"react",
"react-navigation"
],
"main": "dist/lib/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"author": "Oktay Şenkan <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/oktaysenkan/react-native-wait-navigation"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "tsc",
"test": "jest --coverage --runInBand",
"prepublish": "tsc",
"lint": "eslint . --ext .ts",
"format": "prettier \"src/**/*.ts\" --write",
"commit": "git-cz",
"release": "standard-version"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testTimeout": 30000,
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"dist"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"collectCoverageFrom": [
"src/*.{js,ts}"
]
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@react-navigation/native": "^6.0.8",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.12.0",
"jest": "^27.5.1",
"jest-config": "^27.5.1",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.4",
"type-fest": "^2.12.1",
"typescript": "^4.6.3"
},
"dependencies": {
"eventemitter3": "^4.0.7",
"fuuu": "^0.0.8",
"lodash.camelcase": "^4.3.0",
"react-dom": "^18.3.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.36.0"
},
"peerDependencies": {
"react": "^18.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}