forked from ccnnde/react-native-simple-openvpn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.88 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
{
"name": "react-native-simple-openvpn",
"title": "React Native Simple Openvpn",
"version": "2.1.0",
"description": "React Native Open VPN Module",
"main": "index.js",
"types": "index.d.ts",
"files": [
"README.md",
"android",
"vpnLib",
"index.js",
"index.d.ts",
"ios",
"react-native-simple-openvpn.podspec"
],
"scripts": {
"release": "dotenv release-it --",
"release-dry": "yarn release --dry-run",
"pub-dry": "npm publish --dry-run",
"test": "echo \"Error: no test specified\" && exit 1",
"build-vpn-lib": "yarn build-ics-ovpn; yarn gen-vpn-lib; yarn patch-vpn-lib",
"build-ics-ovpn": "sh scripts/build-ics-ovpn.sh",
"gen-vpn-lib": "sh scripts/gen-vpn-lib.sh",
"patch-vpn-lib": "sh scripts/patch-vpn-lib.sh",
"zip-vpn-jni": "node vpnJni/zip-vpn-jni.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ccnnde/react-native-simple-openvpn.git",
"baseUrl": "https://github.com/ccnnde/react-native-simple-openvpn"
},
"keywords": [
"react-native",
"openvpn",
"vpn"
],
"author": {
"name": "Nor Cod",
"email": "norfecod@outlook.com"
},
"license": "GPL-2.0-or-later",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"favolosoEmoji": {
"showEmojiPerCommit": false,
"emojis": {
"feat": {
"emoji": "✨",
"heading": "✨ Features"
},
"fix": {
"emoji": "🐞",
"heading": "🐞 Bug Fixes"
}
}
},
"peerDependencies": {
"react-native": ">=0.63"
},
"devDependencies": {
"@favoloso/conventional-changelog-emoji": "^0.10.0",
"@release-it/conventional-changelog": "^5.1.1",
"archiver": "^5.3.0",
"clang-format": "^1.4.0",
"dotenv-cli": "^7.1.0",
"prettier": "^2.3.2",
"release-it": "^15.9.3"
}
}