-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
80 lines (80 loc) · 1.87 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
{
"name": "react-native-serial-port-api",
"title": "React Native Serial Port API",
"version": "1.4.0",
"description": "React Native Serial Port API",
"main": "lib/commonjs/index.js",
"react-native": "src/index.ts",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"android/src/",
"android/build.gradle"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate-docs": "node_modules/.bin/jsdoc src -r -R README.md -t node_modules/docdash -d ./docs",
"prepack": "bob build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bastengao/react-native-serial-port-api.git",
"baseUrl": "https://github.com/bastengao/react-native-serial-port-api"
},
"keywords": [
"react-native",
"serial-port",
"android"
],
"author": {
"name": "bastengao",
"email": "[email protected]"
},
"contributors": [
{
"name": "Alessandro Raffa @ Infobiotech",
"email": "[email protected]",
"url": "https://github.com/infobiotech"
}
],
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/react-native": "^0.60.31",
"docdash": "^1.1.1",
"jsdoc": "^3.6.3",
"react": "^16.8.3",
"react-native": "^0.59.10",
"react-native-builder-bob": "^0.20.3",
"typescript": "^4.9.5"
},
"dependencies": {
"buffer": "^5.4.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
]
}