-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.16 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
{
"name": "react-native-screens-devtool",
"version": "0.0.3",
"description": "A dev tool for quickly simulating different screen sizes.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/rpenfold/react-native-screens-devtool"
},
"scripts": {
"build": "tsc",
"start": "tsc --watch",
"lint": "eslint .",
"prepublish": "npm run build",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"keywords": [
"react-native",
"devtool",
"screens",
"dimensions"
],
"author": "Ryan Penfold",
"license": "ISC",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/enzyme": "3.10.8",
"@types/jest": "25.2.1",
"@types/react": "^16.11.0",
"@types/react-native": "^0.62.0",
"@typescript-eslint/eslint-plugin": "2.29.0",
"@typescript-eslint/parser": "2.29.0",
"eslint": "6.8.0",
"eslint-plugin-react": "7.19.0",
"jest": "25.4.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "^0.63.0",
"ts-jest": "25.4.0",
"typescript": "3.8.3"
},
"dependencies": {
"tiny-emitter": "2.1.0"
}
}