mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
tidy package.json and grunt file
This commit is contained in:
parent
71be4500fc
commit
78a994e439
@ -1,7 +1,10 @@
|
|||||||
|
|
||||||
// Configuration for Node-RED-nodes project
|
// Configuration for Node-RED-nodes project
|
||||||
module.exports = function(grunt) {
|
module.exports = function(grunt) {
|
||||||
|
|
||||||
|
// Project configuration.
|
||||||
grunt.initConfig({
|
grunt.initConfig({
|
||||||
|
pkg: grunt.file.readJSON('package.json'),
|
||||||
simplemocha: {
|
simplemocha: {
|
||||||
options: {
|
options: {
|
||||||
globals: ['expect'],
|
globals: ['expect'],
|
||||||
@ -50,6 +53,6 @@ module.exports = function(grunt) {
|
|||||||
grunt.loadNpmTasks('grunt-lint-inline');
|
grunt.loadNpmTasks('grunt-lint-inline');
|
||||||
grunt.loadNpmTasks('grunt-jscs');
|
grunt.loadNpmTasks('grunt-jscs');
|
||||||
|
|
||||||
grunt.registerTask('default', ['jshint:all', 'inlinelint', 'simplemocha:all']);
|
grunt.registerTask('default', ['jshint:all', 'inlinelint:html', 'simplemocha:all']);
|
||||||
grunt.registerTask('style', ['jscs']);
|
grunt.registerTask('style', ['jscs']);
|
||||||
};
|
};
|
||||||
|
56
package.json
56
package.json
@ -1,40 +1,50 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-nodes",
|
"name": "node-red-nodes",
|
||||||
"version" : "0.0.9",
|
"version": "0.0.9",
|
||||||
"description" : "Node-RED-nodes package to hold the test framework ONLY - use npm to install individual nodes",
|
"description": "Node-RED-nodes package to hold the test framework ONLY - use npm to install individual nodes",
|
||||||
"homepage" : "http://nodered.org",
|
"homepage": "http://nodered.org",
|
||||||
"license" : "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"repository" : {
|
"repository": {
|
||||||
"type":"git",
|
"type": "git",
|
||||||
"url":"https://github.com/node-red/node-red-nodes.git"
|
"url": "https://github.com/node-red/node-red-nodes.git"
|
||||||
},
|
},
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{"name": "Dave Conway-Jones"},
|
{
|
||||||
{"name": "Nick O'Leary"},
|
"name": "Dave Conway-Jones"
|
||||||
{"name": "Ben Hardill"}
|
},
|
||||||
|
{
|
||||||
|
"name": "Nick O'Leary"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Ben Hardill"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Node-RED", "nodes", "iot", "ibm", "flow"
|
"Node-RED",
|
||||||
|
"nodes",
|
||||||
|
"iot",
|
||||||
|
"ibm",
|
||||||
|
"flow"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"exif": "^0.6.0",
|
||||||
"grunt": "^1.0.1",
|
"grunt": "^1.0.1",
|
||||||
"grunt-contrib-jshint": "^1.1.0",
|
"grunt-contrib-jshint": "^1.1.0",
|
||||||
"grunt-jscs": "^3.0.1",
|
"grunt-jscs": "^3.0.1",
|
||||||
"grunt-lint-inline": "^1.0.0",
|
"grunt-lint-inline": "^1.0.0",
|
||||||
"grunt-simple-mocha": "^0.4.1",
|
"grunt-simple-mocha": "^0.4.1",
|
||||||
"mocha": "^3.2.0",
|
"imap": "^0.8.19",
|
||||||
"should": "^11.2.1",
|
"mailparser": "^0.6.1",
|
||||||
"sinon": "^1.17.7",
|
"mocha": "~3.5.3",
|
||||||
"supertest": "^3.0.0",
|
"msgpack-lite": "^0.1.26",
|
||||||
"proxyquire": "^1.7.11",
|
|
||||||
"pushbullet": "^2.0.0",
|
|
||||||
"when": "^3.7.8",
|
|
||||||
"exif": "^0.6.0",
|
|
||||||
"ngeohash": "^0.6.0",
|
"ngeohash": "^0.6.0",
|
||||||
"nodemailer": "^1.11.0",
|
"nodemailer": "^1.11.0",
|
||||||
"poplib": "^0.1.7",
|
"poplib": "^0.1.7",
|
||||||
"mailparser": "^0.6.1",
|
"proxyquire": "^1.7.11",
|
||||||
"imap": "^0.8.19",
|
"pushbullet": "~2.1.0",
|
||||||
"msgpack-lite": "^0.1.26"
|
"should": "^11.2.1",
|
||||||
|
"sinon": "^1.17.7",
|
||||||
|
"supertest": "^3.0.0",
|
||||||
|
"when": "^3.7.8"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user