New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

appc-cli-mocha

Package Overview
Dependencies
Maintainers
2
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appc-cli-mocha - npm Package Compare versions

Comparing version

to
0.1.0

20

lib/appc.js

@@ -28,12 +28,10 @@ /**

},
commands: {
config: {
/** [get description] */
get: function (key) {
return config[key];
},
/** [set description] */
set: function (key, value) {
config[key] = value;
}
config: {
/** [get description] */
get: function (key) {
return config[key];
},
/** [set description] */
set: function (key, value) {
config[key] = value;
}

@@ -79,3 +77,3 @@ },

var args = Array.prototype.slice.call(arguments);
captureLogs(type).apply(this, [args.join(' ').toString()]);
captureLogs(type).apply(this, [ args.join(' ').toString() ]);
};

@@ -82,0 +80,0 @@ }

@@ -49,3 +49,3 @@ /**

conditionsKeys = Object.keys(conditions),
toAddFunctions = [describe, it, before, after, beforeEach, afterEach];
toAddFunctions = [ describe, it, before, after, beforeEach, afterEach ];

@@ -130,5 +130,5 @@ // itterate through the functions

// define temp directory
this.tmpDir = os.tmpDir();
this.tmpDir = os.tmpdir();
return callback.apply(this, [null, selectedPlugin]);
return callback.apply(this, [ null, selectedPlugin ]);
});

@@ -135,0 +135,0 @@ };

@@ -34,3 +34,3 @@ /**

/** append custom middleware */
var _handle = function customMiddleware() {
function customMiddleware() {
var args = Array.prototype.slice.call(arguments),

@@ -56,5 +56,5 @@ req = args[0],

return handle.apply(this, args);
};
}
// assign endpoint
module.exports.app[method](apiEndpoint.path, _handle);
module.exports.app[method](apiEndpoint.path, customMiddleware);
};

@@ -61,0 +61,0 @@

{
"name": "appc-cli-mocha",
"version": "0.0.5",
"version": "0.1.0",
"description": "simple, flexible, fun mocha framework extension with server response mock-ing",
"repository": {
"type": "git",
"url": "https://github.com/appcelerator/appc-cli-mocha.git"
},
"keywords": [
"appc-cli",
"appcelerator",
"titanium",
"mocha"
],
"main": "lib/index.js",
"scripts": {
"test": "grunt"
"lint": "eslint .",
"pretest": "npm run lint",
"test": "JUNIT_REPORT_PATH=junit_report.xml nyc mocha"
},

@@ -12,23 +24,20 @@ "author": "Muhammad Dadu",

"dependencies": {
"async": "^1.2.0",
"body-parser": "^1.12.4",
"chalk": "^1.0.0",
"appc-platform-sdk": "^3.1.0",
"async": "^2.6.2",
"body-parser": "^1.18.3",
"chalk": "^2.4.2",
"connect-busboy": "0.0.2",
"express": "^4.12.4",
"lodash": "^3.9.3",
"request": "^2.57.0"
"express": "^4.16.4",
"lodash": "^4.17.11",
"request": "^2.88.0"
},
"devDependencies": {
"appc-platform-sdk": "^1.0.73",
"grunt": "^0.4.5",
"grunt-appc-coverage": "^0.2.0",
"grunt-appc-js": "^1.0.10",
"grunt-contrib-clean": "^0.6.0",
"grunt-env": "^0.4.4",
"grunt-kahvesi": "^0.2.4",
"grunt-mocha-test": "^0.12.7",
"mocha": "^2.2.5",
"request": "^2.57.0",
"should": "^6.0.3"
"eslint": "^5.14.1",
"eslint-config-axway": "^4.2.2",
"eslint-plugin-mocha": "^5.3.0",
"mocha": "^6.0.0",
"mocha-jenkins-reporter": "^0.4.1",
"nyc": "^13.3.0",
"should": "^13.2.3"
}
}