-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 913 Bytes
/
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
{
"name": "react-native-barcode-svg",
"version": "0.0.15",
"description": "React Native component to generate barcode. Uses @react-native-community/react-native-svg.",
"repository": {
"type": "git",
"url": "https://github.com/fanyangxi/react-native-barcode-svg.git"
},
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint ./"
},
"keywords": [
"react-native",
"barcode",
"svg"
],
"author": "YangxiFAN <fanyangxi@live.cn>",
"peerDependencies": {
"react": "*",
"react-native": ">=0.59.0",
"react-native-svg": ">=11.0.1"
},
"dependencies": {
"jsbarcode": "^3.11.0",
"prop-types": "^15.5.10"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0"
}
}