forked from Expensify/react-native-qrcode-svg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.59 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
{
"name": "react-native-qrcode-svg",
"version": "6.1.2",
"description": "A QR Code generator for React Native based on react-native-svg and javascript-qrcode.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"prepare": "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"
},
"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-native": ">=0.63.4",
"react": "*",
"react-native-svg": "^12.1.0"
},
"dependencies": {
"prop-types": "^15.7.2",
"qrcode": "^1.5.0"
},
"devDependencies": {
"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": "^17.0.2",
"react-test-renderer": "^17.0.2",
"standard": "^16.0.4"
}
}