-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.42 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
{
"name": "rn-utilities",
"version": "0.2.0",
"description": "These are the utility methods for react native to ace the development process.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release:patch": "standard-version -- --release-as patch && git push --follow-tags origin master && npm publish",
"release:minor": "standard-version -- --release-as minor && git push --follow-tags origin master && npm publish",
"release:major": "standard-version -- --release-as major && git push --follow-tags origin master && npm publish",
"release": "npx release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajaykumar97/rn-utilities.git"
},
"keywords": [
"helper-functions",
"helper",
"react",
"native",
"react-native",
"helper",
"functions"
],
"author": "Ajay Kumar",
"license": "MIT",
"bugs": {
"url": "https://github.com/ajaykumar97/rn-utilities/issues"
},
"homepage": "https://github.com/ajaykumar97/rn-utilities#readme",
"dependencies": {
"react-native-iphone-x-helper": "^1.2.1",
"release-it": "^14.11.5"
},
"devDependencies": {
"@release-it/conventional-changelog": "^3.3.0",
"standard-version": "^9.3.0"
},
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
}
}