forked from wonsikin/react-native-barcode-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1017 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "react-native-barcode-builder",
"version": "2.0.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/wonsikin/react-native-barcode-builder.git"
},
"license": "Apache 2.0",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"lint": "eslint ./"
},
"keywords": [
"react-native",
"barcode"
],
"author": "WonSikin <fnghwsj@gmail.com>",
"dependencies": {
"@react-native-community/art": "^1.2.0",
"jsbarcode": "^3.8.0"
},
"peerDependencies": {
"prop-types": "^15.5.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "2.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"git add --force"
],
"*.{md,json}": [
"prettier --write",
"git add --force"
]
}
}