-
Notifications
You must be signed in to change notification settings - Fork 217
/
package.json
74 lines (74 loc) · 1.77 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
{
"name": "react-native-qrcode-svg",
"version": "6.3.12",
"description": "A QR Code generator for React Native based on react-native-svg and javascript-qrcode.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"prepack": "rm -rf example",
"test": "jest",
"test:update": "npm run test -- --updateSnapshot",
"lint": "standard 'src/**/*.js'",
"lint:fix": "standard 'src/**/*.js' --fix",
"lint:staged": "lint-staged",
"check:update": "npx npm-check-updates -u",
"check:outdated": "npm outdated"
},
"standard": {
"env": [
"jest"
],
"parser": "babel-eslint"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"example/"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/awesomejerry/react-native-qrcode-svg.git"
},
"files": [
"Example",
"screenshot",
"src",
"babel.config.js",
"index.d.ts",
"index.js"
],
"keywords": [
"react-native",
"qrcode",
"svg"
],
"author": "awesomejerry",
"license": "MIT",
"bugs": {
"url": "https://github.com/awesomejerry/react-native-qrcode-svg/issues"
},
"homepage": "https://github.com/awesomejerry/react-native-qrcode-svg#readme",
"peerDependencies": {
"react": "*",
"react-native": ">=0.63.4",
"react-native-svg": ">=14.0.0"
},
"dependencies": {
"prop-types": "^15.8.0",
"qrcode": "^1.5.1",
"text-encoding": "^0.7.0"
},
"devDependencies": {
"@types/react": "^18.2.75",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.4.2",
"husky": "^7.0.4",
"jest": "^27.4.3",
"lint-staged": "^12.1.2",
"metro-react-native-babel-preset": "^0.66.2",
"react": "^18.1.0",
"react-test-renderer": "^18.1.0",
"standard": "^16.0.4"
}
}