-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.6 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
{
"name": "nativescript-background-http",
"version": "4.2.1",
"main": "background-http",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"android": "6.0.0",
"ios": "6.0.0"
}
},
"repository": {
"type": "git",
"url": "https://github.com/NativeScript/nativescript-background-http"
},
"url": "https://github.com/NativeScript/nativescript-background-http/issues",
"scripts": {
"tsc": "tsc -skipLibCheck",
"build": "npm i && tsc",
"test.android": "npm i && npm run tsc && npm run tslint && cd ../demo && tns build android && tns test android --justlaunch",
"test.ios": "npm i && npm run tsc && npm run tslint && cd ../demo && tns build ios && tns test ios --justlaunch",
"tslint": "cd .. && tslint \"**/*.ts\" --config tslint.json --exclude \"**/node_modules/**\"",
"demo.ios": "npm i && npm run tsc && cd ../demo && tns run ios",
"demo-angular.ios": "npm i && npm run tsc && cd ../demo-angular && tns run ios",
"demo-vue.ios": "npm i && npm run tsc && cd ../demo-vue && tns run ios",
"demo.android": "npm i && npm run tsc && cd ../demo && tns run android",
"demo-angular.android": "npm i && npm run tsc && cd ../demo-angular && tns run android",
"demo-vue.android": "npm i && npm run tsc && cd ../demo-vue && tns run android",
"demo.reset": "cd ../demo && rimraf platforms",
"demo-angular.reset": "cd ../demo-angular && rimraf platforms",
"server": "cd ../demo-server && npm run start",
"plugin.prepare": "npm run tsc && cd ../demo && tns plugin remove nativescript-background-http && tns plugin add ../src",
"clean": "cd ../demo && rimraf hooks node_modules platforms && cd ../src && rimraf node_modules && npm run plugin.link",
"ci.tslint": "npm i && tslint '**/*.ts' --config '../tslint.json' --exclude '**/node_modules/**'"
},
"keywords": [
"background",
"http",
"upload",
"download",
"NativeScript"
],
"author": {
"name": "NativeScript Team"
},
"bugs": {
"url": "https://github.com/NativeScript/nativescript-background-http/issues"
},
"license": "Apache-2.0",
"homepage": "https://github.com/NativeScript/nativescript-background-http/issues",
"devDependencies": {
"tns-core-modules": "^6.0.0",
"tns-platform-declarations": "^6.0.0",
"typescript": "~3.5.3",
"rimraf": "~2.6.2",
"semver": "~5.6.0",
"tslint": "~5.11.0"
},
"bootstrapper": "nativescript-plugin-seed"
}