forked from Expensify/react-native-qrcode-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "react-native-qrcode-svg2",
"version": "6.0.4",
"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-staged": "lint-staged",
"lint": "standard 'src/**/*.js'",
"2npm": "publish",
"check-update": "yarn upgrade-interactive"
},
"standard": {
"env": ["jest"],
"parser": "babel-eslint"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": "lint"
},
"jest": {
"testPathIgnorePatterns": ["/node_modules/", "example/"]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rich1111/react-native-qrcode-svg.git"
},
"keywords": ["react-native", "qrcode", "svg"],
"author": "awesomejerry",
"license": "MIT",
"bugs": {
"url": "https://github.com/rich1111/react-native-qrcode-svg/issues"
},
"homepage": "https://github.com/rich1111/react-native-qrcode-svg#readme",
"peerDependencies": {
"react-native": ">=0.59.0",
"react": "*",
"react-native-svg": "^9.6.4"
},
"dependencies": {
"prop-types": "^15.5.10",
"qrcode": "1.2.0"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-preset-react-native": "^4.0.0",
"jest": "^21.2.1",
"lint-staged": "^4.2.3",
"pre-commit": "^1.2.2",
"publish": "^0.6.0",
"react": "^16.8.0",
"react-test-renderer": "^16.8.0",
"standard": "^10.0.3"
}
}