-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
84 lines (84 loc) · 2.06 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
{
"name": "@arelstone/react-native-swipe-button",
"version": "0.3.0",
"description": "A UI component for displaying a button that can be swiped.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint .",
"test": "jest --notify --detectOpenHandles --color --runInBand --forceExit",
"build": "tsc"
},
"keywords": [
"react native",
"react native component",
"component",
"swipe",
"button",
"mobile",
"ios",
"android",
"ui",
"animation"
],
"author": {
"name": "Carsten Daurehøj <arelstone>",
"email": "[email protected]",
"url": "https://github.com/arelstone"
},
"homepage": "https://github.com/arelstone/react-native-swipe-button#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/arelstone/react-native-swipe-button.git"
},
"bugs": {
"url": "https://github.com/arelstone/react-native-swipe-button/issues"
},
"license": "ISC",
"devDependencies": {
"@arelstone/eslint-config-react-native-typescript": "^1.1.5",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.8",
"@types/react": "^16.9.19",
"@types/react-native": "^0.67.4",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^25.1.0",
"react": "^16.9.21",
"react-dom": "^16.12.0",
"react-native": "^0.61.5",
"ts-jest": "^25.2.1",
"typescript": "^4.6.3"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.jest.json"
}
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePaths": [
"<rootDir>"
],
"setupFiles": [
"./jest.setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/example/"
]
}
}