-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
66 lines (66 loc) · 1.75 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
{
"name": "nativescript-oauth",
"version": "2.1.8",
"description": "OAuth 2 login for NativeScript.",
"main": "index.js",
"nativescript": {},
"scripts": {
"build": "npm i && tsc",
"demo.android": "npm run preparedemo && cd demo-angular && tns run android",
"preparedemo": "npm run build && cd demo-angular && tns plugin remove nativescript-oauth && tns plugin add .. && tns install",
"setup": "cd demo-angular && npm install && cd .. && npm run build && cd demo-angular && tns plugin add .. && cd .."
},
"repository": {
"type": "git",
"url": "https://github.com/alexziskind1/nativescript-oauth.git"
},
"typescript": {
"definition": "index.d.ts"
},
"typings": "index",
"keywords": [
"NativeScript",
"JavaScript",
"TypeScript",
"Office365",
"Facebook",
"Azure AD",
"iOS",
"Android"
],
"author": {
"name": "Alexander Ziskind",
"email": "[email protected]",
"url": "http://www.nuvious.com/blog"
},
"contributors": [
{
"name": "Kevin Primm",
"email": "[email protected]",
"url": "https://github.com/kfprimm"
},
{
"name": "Toma Nikolov",
"url": "https://github.com/TomaNikolov"
}
],
"bugs": {
"url": "https://github.com/alexziskind1/nativescript-oauth/issues"
},
"license": {
"type": "MIT",
"url": "https://github.com/alexziskind1/nativescript-oauth/blob/master/LICENSE"
},
"homepage": "https://github.com/alexziskind1/nativescript-oauth",
"readmeFilename": "README.md",
"dependencies": {
"querystring": "^0.2.0",
"url": "^0.11.0"
},
"devDependencies": {
"nativescript-dev-typescript": "^0.7.1",
"tns-core-modules": "4.1.0",
"typescript": "^2.7.2",
"tns-platform-declarations": "4.1.0"
}
}