This repository was archived by the owner on Mar 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 KB
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
{
"name": "react-native-native-dialogs",
"title": "React Native Native Dialogs",
"version": "2.0.0",
"description": "Native dialogs used in React Native",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"commit": "git-cz",
"release": "standard-version",
"lint": "eslint ./src --fix --ext .ts,.tsx",
"build": "tsc; eslint ./dist --fix --ext .ts,.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Phecda/react-native-native-dialogs.git",
"baseUrl": "https://github.com/Phecda/react-native-native-dialogs"
},
"keywords": ["react-native"],
"author": {
"name": "Phecda",
"email": "szp12345141@gmail.com"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": "^16.8.1",
"react-native": ">=0.60.0-rc.0 <1.0.x"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@react-native-community/eslint-config": "^0.0.7",
"@types/react-native": "^0.61.23",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"react": "^16.9.0",
"react-native": "^0.61.5",
"standard-version": "^7.1.0",
"typescript": "^3.8.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
}
}