forked from watanabeyu/react-native-simple-twitter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.15 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.15 KB
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
{
"name": "@studiolabs/react-native-simple-twitter",
"version": "2.3.7",
"public": true,
"description": "Twitter API client for React Native without react-native link",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.json",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/studioLabs/react-native-simple-twitter.git"
},
"keywords": [
"react-native",
"expo",
"twitter"
],
"author": "Steed Monteiro <steed.monteiro@gmail.com> (https://github.com/studioLabs)",
"license": "MIT",
"bugs": {
"url": "https://github.com/studioLabs/react-native-simple-twitter/issues"
},
"homepage": "https://github.com/studioLabs/react-native-simple-twitter",
"dependencies": {
"crypto-js": "^3.1.9-1"
},
"peerDependencies": {
"react-native": "^0.62.2",
"react-native-webview": "^10.2.3"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@types/crypto-js": "^3.1.47",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.35",
"@types/react-native": "^0.62.13",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"jest": "^26.0.1",
"react": "^16.13.1",
"ts-jest": "^26.1.0",
"react-native": "^0.62.2",
"react-native-webview": "^10.2.3",
"typescript": "^3.9.5"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json",
"diagnostics": false
}
},
"testMatch": [
"**/__tests__/**/*.test.(ts|tsx|js)"
],
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"directories": {
"example": "example",
"src": "src",
"dist": "dist"
}
}