-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.23 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
{
"name": "react-native-quark",
"version": "1.0.0",
"description": "An ART-based qrcode component for react-native",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"lint": "prettier --write '**/*.{js,ts,md}'; standard --fix",
"test": "jest"
},
"lint-staged": {
"*.{ts,md}": [
"prettier --write",
"git add"
],
"*.js": [
"prettier --write",
"standard --fix",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"standard": {
"env": {
"jest": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/fanqfanh/react-native-quark.git"
},
"keywords": [
"react-native",
"barcode",
"qrcode",
"quark",
"ART"
],
"author": "Fanqh Team",
"license": "MIT",
"homepage": "https://github.com/fanqfanh/react-native-quark#readme",
"bugs": {
"url": "https://github.com/fanqfanh/react-native-quark/issues"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"react": "16.3.x",
"standard": "^11.0.1"
},
"dependencies": {
"qr.js": "0.0.0"
}
}