Merge pull request #2105 from NativeScript/plamen5kov/add_packagejson_info

add native script key in package.son files
This commit is contained in:
Plamen Petkov
2016-05-17 14:51:52 +03:00
25 changed files with 122 additions and 43 deletions

View File

@@ -1,2 +1,5 @@
{ "name" : "application-settings",
"main" : "application-settings.js" }
{
"name" : "application-settings",
"main" : "application-settings.js",
"nativescript": {}
}

View File

@@ -1,2 +1,5 @@
{ "name" : "application",
"main" : "application.js" }
{
"name" : "application",
"main" : "application.js",
"nativescript": {}
}

View File

@@ -1,2 +1,6 @@
{ "name" : "camera",
"main" : "camera.js" }
{
"name" : "camera",
"main" : "camera.js",
"nativescript": {}
}

View File

@@ -1,2 +1,6 @@
{ "name" : "color",
"main" : "color.js" }
{
"name" : "color",
"main" : "color.js",
"nativescript": {}
}

View File

@@ -1,2 +1,5 @@
{ "name" : "connectivity",
"main" : "connectivity.js" }
{
"name" : "connectivity",
"main" : "connectivity.js",
"nativescript": {}
}

View File

@@ -1,2 +1,6 @@
{ "name" : "console",
"main" : "console.js" }
{
"name" : "console",
"main" : "console.js",
"nativescript": {}
}

View File

@@ -13,5 +13,6 @@
"mocha": "~1.9.0",
"should": "~1.2.2"
},
"main": "index"
"main": "index",
"nativescript": {}
}

View File

@@ -30,5 +30,6 @@
"parser",
"stringifier",
"stylesheet"
]
],
"nativescript": {}
}

3
data/package.json Normal file
View File

@@ -0,0 +1,3 @@
{
"nativescript": {}
}

View File

@@ -1,2 +1,5 @@
{ "name" : "debugger",
"main" : "debugger.js" }
{
"name" : "debugger",
"main" : "debugger.js",
"nativescript": {}
}

View File

@@ -1,2 +1,5 @@
{ "name" : "fetch",
"main" : "fetch.js" }
{
"name" : "fetch",
"main" : "fetch.js",
"nativescript": {}
}

View File

@@ -1,2 +1,5 @@
{ "name" : "file-system",
"main" : "file-system.js" }
{
"name" : "file-system",
"main" : "file-system.js",
"nativescript": {}
}

View File

@@ -1,2 +1,6 @@
{ "name" : "fps-meter",
"main" : "fps-meter.js" }
{
"name" : "fps-meter",
"main" : "fps-meter.js",
"nativescript": {}
}

View File

@@ -1,2 +1,6 @@
{ "name" : "globals",
"main" : "globals.js" }
{
"name" : "globals",
"main" : "globals.js",
"nativescript": {}
}

View File

@@ -1,2 +1,6 @@
{ "name" : "http",
"main" : "http.js" }
{
"name" : "http",
"main" : "http.js",
"nativescript": {}
}

View File

@@ -1,2 +1,6 @@
{ "name" : "image-source",
"main" : "image-source.js" }
{
"name" : "image-source",
"main" : "image-source.js",
"nativescript": {}
}

View File

@@ -1,2 +1,6 @@
{ "name" : "location",
"main" : "location.js" }
{
"name" : "location",
"main" : "location.js",
"nativescript": {}
}

View File

@@ -1,2 +1,5 @@
{ "name" : "platform",
"main" : "platform.js" }
{
"name" : "platform",
"main" : "platform.js",
"nativescript": {}
}

View File

@@ -1,2 +1,5 @@
{ "name" : "text",
"main" : "text.js" }
{
"name" : "text",
"main" : "text.js",
"nativescript": {}
}

View File

@@ -1,2 +1,5 @@
{ "name" : "timer",
"main" : "timer.js" }
{
"name" : "timer",
"main" : "timer.js",
"nativescript": {}
}

View File

@@ -1,2 +1,5 @@
{ "name" : "trace",
"main" : "trace.js" }
{
"name" : "trace",
"main" : "trace.js",
"nativescript": {}
}

View File

@@ -1 +1,4 @@
{ "name" : "ui" }
{
"name" : "ui",
"nativescript": {}
}

3
utils/package.json Normal file
View File

@@ -0,0 +1,3 @@
{
"nativescript": {}
}

View File

@@ -1,2 +1,5 @@
{ "name" : "xhr",
"main" : "xhr.js" }
{
"name" : "xhr",
"main" : "xhr.js",
"nativescript": {}
}

View File

@@ -1,2 +1,5 @@
{ "name" : "xml",
"main" : "xml.js" }
{
"name" : "xml",
"main" : "xml.js",
"nativescript": {}
}