Move node locales and tidy up package.json files

This commit is contained in:
Nick O'Leary 2018-08-20 20:31:29 +01:00
parent 7e7117632d
commit 546f07156f
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
47 changed files with 60 additions and 30 deletions

View File

@ -8,30 +8,16 @@
"type": "git",
"url": "https://github.com/node-red/node-red.git"
},
"main": "red/red.js",
"private": "true",
"scripts": {
"start": "node red.js",
"start": "node packages/node_modules/node-red/red.js",
"test": "grunt",
"build": "grunt build",
"docs": "grunt docs"
},
"bin": {
"node-red": "./red.js",
"node-red-pi": "bin/node-red-pi"
},
"contributors": [
{
"name": "Nick O'Leary"
},
{
"name": "Dave Conway-Jones"
}
],
"keywords": [
"editor",
"messaging",
"iot",
"flow"
{ "name": "Nick O'Leary" },
{ "name": "Dave Conway-Jones"}
],
"dependencies": {
"ajv": "6.5.2",

View File

@ -3,6 +3,14 @@
"version": "0.20.0",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red.git"
},
"contributors": [
{ "name": "Nick O'Leary" },
{ "name": "Dave Conway-Jones"}
],
"dependencies": {
"body-parser": "1.18.3",
"clone": "2.1.2",
@ -20,4 +28,4 @@
"passport-oauth2-client-password": "0.1.2",
"when": "3.7.8"
}
}
}

View File

@ -2,5 +2,13 @@
"name": "@node-red/editor-client",
"version": "0.20.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red.git"
},
"contributors": [
{ "name": "Nick O'Leary" },
{ "name": "Dave Conway-Jones"}
],
"main": "./lib/index.js"
}

View File

@ -2,6 +2,14 @@
"name": "@node-red/nodes",
"version": "0.20.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red.git"
},
"contributors": [
{ "name": "Nick O'Leary" },
{ "name": "Dave Conway-Jones"}
],
"dependencies": {
"body-parser": "1.18.3",
"cookie": "0.3.1",

View File

@ -247,7 +247,7 @@ function getNodeFiles(disableNodePathScan) {
results = getLocalNodeFiles(path.resolve(settings.coreNodesDir));
nodeFiles = nodeFiles.concat(results.files);
iconList = iconList.concat(results.icons);
var defaultLocalesPath = path.join(settings.coreNodesDir,"core","locales");
var defaultLocalesPath = path.join(settings.coreNodesDir,"locales");
i18n.registerMessageCatalog("node-red",defaultLocalesPath,"messages.json");
}

View File

@ -3,9 +3,17 @@
"version": "0.20.0",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red.git"
},
"contributors": [
{ "name": "Nick O'Leary" },
{ "name": "Dave Conway-Jones"}
],
"dependencies": {
"semver": "5.5.0",
"uglify-js": "3.4.7",
"when": "3.7.8"
}
}
}

View File

@ -3,6 +3,14 @@
"version": "0.20.0",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red.git"
},
"contributors": [
{ "name": "Nick O'Leary" },
{ "name": "Dave Conway-Jones"}
],
"dependencies": {
"clone": "2.1.2",
"express": "4.16.3",
@ -10,4 +18,4 @@
"json-stringify-safe": "5.0.1",
"when": "3.7.8"
}
}
}

View File

@ -2,6 +2,14 @@
"name": "@node-red/util",
"version": "0.20.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red.git"
},
"contributors": [
{ "name": "Nick O'Leary" },
{ "name": "Dave Conway-Jones"}
],
"dependencies": {
"clone": "2.1.2",
"i18next": "11.6.0",
@ -9,4 +17,4 @@
"jsonata": "1.5.4",
"when": "3.7.8"
}
}
}

View File

@ -17,12 +17,8 @@
"node-red-pi": "bin/node-red-pi"
},
"contributors": [
{
"name": "Nick O'Leary"
},
{
"name": "Dave Conway-Jones"
}
{ "name": "Nick O'Leary" },
{ "name": "Dave Conway-Jones"}
],
"keywords": [
"editor",
@ -49,6 +45,6 @@
"bcrypt": "~2.0.0"
},
"engines": {
"node": ">=4"
"node": ">=8"
}
}