forked from nativescript-community/https
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.03 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.03 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
66
67
68
{
"name": "@nativescript-community/https",
"version": "4.1.0",
"description": "Nativescript plugin for https requests",
"main": "index",
"sideEffects": false,
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"android": "6.2.1",
"ios": "6.2.1"
}
},
"scripts": {
"tsc": "cpy '**/*.d.ts' '../../packages/https' --parents --cwd=../../src/https && tsc -d",
"readme": "readme generate -c ../../tools/readme/blueprint.json",
"build": "npm run tsc",
"build.watch": "npm run tsc -- -w",
"build.win": "npm run tsc-win",
"build.all": "npm run build && npm run build.angular",
"build.angular": "ng-packagr -p ../../src/https/angular/ng-package.json -c ../../src/https/angular/tsconfig.json",
"build.all.win": "npm run build.win",
"clean": "rimraf ./*.d.ts ./*.js ./*.js.map"
},
"contributors": [
{
"name": "Eddy Verbruggen",
"email": "[email protected]",
"url": "https://github.com/EddyVerbruggen"
},
{
"name": "Kefah BADER ALDIN",
"email": "[email protected]",
"url": "https://github.com/kefahB"
},
{
"name": "Ruslan Lekhman",
"email": "[email protected]",
"url": "https://github.com/lekhmanrus"
}
],
"author": {
"name": "Martin Guillon",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/nativescript-community/https/issues"
},
"license": "MIT",
"homepage": "https://github.com/nativescript-community/https",
"readmeFilename": "README.md",
"bootstrapper": "nativescript-plugin-seed",
"keywords": [
"secure",
"https",
"http",
"ssl",
"tls",
"pinning",
"nativescript",
"ecosystem:nativescript",
"nativescript-android",
"nativescript-ios",
"JavaScript",
"Android",
"iOS"
]
}