-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 2.77 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
80
81
82
83
84
85
86
87
88
89
{
"name": "react-native-circular-timer",
"version": "1.1.4",
"description": "Circular Timer component for React Native",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src/"
],
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@react-native-community/eslint-config": "0.0.5",
"babel-eslint": "10.0.2",
"babel-jest": "^24.7.1",
"metro-react-native-babel-preset": "^0.53.1",
"eslint": "6.1.0",
"eslint-plugin-flowtype": "4.2.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-native": "3.7.0",
"flow-bin": "^0.105.2",
"generate-changelog": "1.8.0",
"husky": "3.0.3",
"idx": "2.5.6",
"lint-staged": "9.2.1",
"minimist": "1.2.0",
"pre-commit": "1.2.2",
"prettier": "^1.18.2",
"typescript": "next",
"simple-git": "1.124.0"
},
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react-native-circular",
"react-native-timer",
"react-native-circular-timer",
"react native",
"react native circular",
"react native timer",
"react native circular timer",
"react",
"mobile",
"ios",
"android",
"ui",
"timer",
"circular"
],
"repository": {
"type": "git",
"url": "git+https://github.com/meharbhutta/react-native-circular-timer.git"
},
"author": "Muhammad Mehar <[email protected]> (https://twitter.com/meharbhutta)",
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/meharbhutta/react-native-circular-timer/issues"
},
"homepage": "https://github.com/meharbhutta/react-native-circular-timer#readme",
"lint-staged": {
"*.js": [
"yarn validate",
"git add"
]
},
"pre-commit": "lint:staged",
"scripts": {
"lint": "eslint index.js --max-warnings=0",
"lint:staged": "lint-staged",
"release:major": "node ./changelog --major && npm version major && git push origin && git push origin --follow-tags",
"release:minor": "node ./changelog --minor && npm version minor && git push origin && git push origin --follow-tags",
"release:patch": "node ./changelog --patch && npm version patch && git push origin && git push origin --follow-tags",
"release:version": "node ./changelog --version $VERSION && git push origin && git push origin --follow-tags",
"validate": "yarn validate:prettier && yarn validate:lint && yarn validate:flow",
"validate:flow": "yarn flow",
"validate:lint": "eslint *js --max-warnings=0",
"validate:prettier": "prettier --write *.js"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
}
}