forked from approov/react-native-cert-pinner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "react-native-cert-pinner",
"version": "0.4.2",
"description": "For React Native, pins TLS connections to specific trusted certificates' public keys",
"author": {
"name": "SKip Hovsmith",
"email": "[email protected]"
},
"license": "Apache-2.0",
"licenseFilename": "LICENSE",
"keywords": [
"react-native",
"ios",
"android",
"fetch",
"certificate-pinning",
"tls",
"https"
],
"main": "index.js",
"bin": {
"pinset": "./cli/pinset.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"chalk": "^2.4.1",
"minimist": "^1.2.0",
"plist": "^3.0.1"
},
"peerDependencies": {
"react-native": ">=0.41.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/approov/react-native-cert-pinner.git",
"baseUrl": "https://github.com/approov/react-native-cert-pinner"
},
"readmeFilename": "README.md",
"homepage": "https://github.com/approov/react-native-cert-pinner#readme",
"bugs": {
"url": "https://github.com/approov/react-native-cert-pinner/issues"
},
"// rnpm": {
"commands": {
"postlink": "./node_modules/react-native-cert-pinner/bin/checklink"
}
}
}