forked from tradle/react-native-udp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.93 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
{
"name": "react-native-udp",
"version": "4.1.7",
"description": "React Native UDP socket API for Android & iOS",
"homepage": "https://github.com/tradle/react-native-udp",
"main": "src/index.js",
"types": "lib/types/index.d.ts",
"scripts": {
"ci": "yarn install --frozen-lockfile && yarn lint && yarn declaration:build && yarn checkjs && yarn test",
"lint": "eslint .",
"checkjs": "tsc && tsc -p ./__tests__/tsconfig.json",
"test": "jest ./__tests__",
"declaration:build": "tsc -p ./declaration.tsconfig.json",
"prepublishOnly": "yarn declaration:build && yarn checkjs"
},
"browser": {
"dgram": "src/index.js"
},
"files": [
"/android/src/",
"/android/build.gradle",
"/ios",
"!Podfile*",
"/windows",
"/src",
"/lib",
"/*.podspec",
"/jest"
],
"repository": {
"type": "git",
"url": "https://github.com/tradle/react-native-udp.git"
},
"keywords": [
"react-native",
"dgram",
"udp",
"sockets",
"iOS",
"Android"
],
"author": {
"name": "Mark Vayngrib",
"email": "[email protected]"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"dependencies": {
"buffer": "^5.6.0",
"events": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.8.0",
"@babel/runtime": "^7.8.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/npm": "^7.0.5",
"@types/events": "^3.0.0",
"@types/jest": "^26.0.19",
"@types/react-native": "^0.63.10",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"react-native": "^0.61.5",
"semantic-release": "^17.1.1",
"typescript": "^4.1.3"
}
}