forked from NathanaelA/nativescript-localstorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.27 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
{
"name": "nativescript-localstorage",
"version": "1.1.5",
"description": "LocalStorage/SessionStorage API",
"main": "localstorage",
"typings": "localstorage.d.ts",
"nativescript": {
"platforms": {
"android": "1.0.0",
"ios": "1.0.0"
},
"plugin": {
"nan": "true",
"pan": "true",
"core3": "true",
"category": "Processing"
}
},
"repository": {
"type": "git",
"url": "https://github.com/NathanaelA/nativescript-localstorage.git"
},
"keywords": [
"NativeScript",
"local storage",
"localstorage",
"session storage",
"sessionstorage",
"nativescript",
"data",
"storage"
],
"author": {
"name": "Nathanael Anderson",
"email": "[email protected]"
},
"contributors": [
{
"name": "Stanimira Vlaeva",
"email": "[email protected]",
"url": "https://github.com/sis0k0"
},
{
"name": "Daniel Kucal",
"email": "[email protected]",
"url": "https://github.com/danielkucal"
},
{
"name": "Brad Martin",
"email": "[email protected]",
"url": "https://github.com/bradmartin"
}
],
"license": {
"type": "MIT",
"url": "https://github.com/NathanaelA/nativescript-localstorage/blob/master/LICENSE"
},
"bugs": {
"url": "https://github.com/NathanaelA/nativescript-localstorage/issues"
},
"homepage": "https://github.com/NathanaelA/nativescript-localstorage",
"readmeFilename": "README.md",
"scripts": {
"demo.ios": "npm run preparedemo && cd demo && tns emulate ios",
"demo.android": "npm run preparedemo && cd demo && tns run android",
"debug.ios": "npm run preparedemo && cd demo && tns debug ios --emulator",
"debug.android": "npm run preparedemo && cd demo && tns debug android --emulator",
"preparedemo": "cd demo && tns plugin remove nativescript-localstorage && tns plugin add .. && tns install",
"setup": "cd demo && npm install && tns plugin add .. && cd ..",
"start": "npm run demo.android"
}
}