-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
79 lines (79 loc) · 1.79 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
75
76
77
78
79
{
"name": "@nartc/react-native-barcode-mask",
"version": "0.0.0-development",
"license": "MIT",
"author": "Chau Tran",
"main": "dist/index.js",
"module": "dist/react-native-barcode-mask.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/nartc/react-native-barcode-mask.git"
},
"scripts": {
"start": "tsdx watch",
"dev": "tsdx watch --localDev",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"lint": "lint-staged",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"react": ">=16",
"react-native": ">=0.60",
"react-native-camera": ">=3",
"react-native-reanimated": ">=1.7"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"lint-staged": {
"{src}/**/*.ts": [
"prettier --write"
]
},
"publishConfig": {
"access": "public"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@types/jest": "27.0.0",
"@types/react": "17.0.5",
"@types/react-native": "0.63.35",
"commitizen": "4.2.1",
"cz-conventional-changelog": "3.3.0",
"husky": "7.0.2",
"lint-staged": "11.1.1",
"react": "16.13.1",
"react-native": "0.64.1",
"react-native-camera": "4.0.3",
"react-native-reanimated": "2.0.1",
"semantic-release": "17.3.7",
"tsdx": "0.14.0",
"tslib": "2.0.1",
"typescript": "3.9.7"
}
}