Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

drools-kie-client

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

drools-kie-client - npm Package Compare versions

Comparing version 0.2.0 to 0.3.0

README.md

31

package.json
{
"name": "drools-kie-client",
"version": "0.2.0",
"version": "0.3.0",
"description": "Node.js client for Drools KIE server API.",
"main": "index.js",
"scripts": {
"test": "tape test/*-test.js",
"lint": "jshint index.js test/*.js",
"format": "semistandard",
"coverage": "./node_modules/.bin/istanbul cover tape -- test/**.js",
"docs": "./node_modules/.bin/jsdoc -d docs -t ./node_modules/ink-docstrap/template -R README.md lib/drools-kie-client.js"
"test": "tape test/drools-kie-client-test.js | tap-spec",
"lint": "eslint index.js test/drools-kie-client-test.js.js",
"prepublish": "nsp check",
"coverage": "istanbul cover tape test/drools-kie-client-test.js",
"docs": "./node_modules/.bin/jsdoc -d docs -t ./node_modules/ink-docstrap/template -R README.md index.js",
"dependencyCheck": "szero . --ci"
},

@@ -16,3 +17,5 @@ "files": [

"test",
"doc"
"doc",
"README.md",
"package.json"
],

@@ -37,12 +40,18 @@ "keywords": [

"devDependencies": {
"eslint": "^3.3.1",
"eslint-config-semistandard": "^7.0.0-beta.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^6.1.2",
"eslint-plugin-standard": "^2.0.0",
"ink-docstrap": "^1.2.1",
"istanbul": "^0.4.3",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.0",
"jshint": "^2.9.2",
"semistandard": "^8.0.0",
"nsp": "^2.6.1",
"tap-spec": "^4.1.1",
"tape": "^4.5.1"
},
"dependencies": {
"roi": "^0.9.0"
"roi": "^0.14.1"
}
}

@@ -24,3 +24,3 @@ /**

const options = {
'baseUrl': 'http://localhost:8080/kie-server-6.4.0.Final-ee7',
'baseUrl': 'http://localhost:8080/kie-server-6.5.0.Final-ee7',
'username': 'kieserver',

@@ -37,3 +37,6 @@ 'password': 'kieserver1!'

t.end();
}).catch(e => console.log(e));
}).catch(e => {
console.error(e.stack);
t.fail(e);
});
});

@@ -55,3 +58,6 @@

t.end();
}).catch(e => console.log(e));
}).catch(e => {
console.error(e.stack);
t.fail(e);
});
});

@@ -64,3 +70,6 @@

t.end();
}).catch(e => console.log(e));
}).catch(e => {
console.error(e.stack);
t.fail(e);
});
});

@@ -73,3 +82,6 @@

t.end();
}).catch(e => console.log(e));
}).catch(e => {
console.error(e.stack);
t.fail(e);
});
});

@@ -82,3 +94,6 @@

t.end();
}).catch(e => console.log(e));
}).catch(e => {
console.error(e.stack);
t.fail(e);
});
});

@@ -91,3 +106,6 @@

t.end();
}).catch(e => console.log(e));
}).catch(e => {
console.error(e.stack);
t.fail(e);
});
});

@@ -105,3 +123,6 @@

t.end();
}).catch(e => console.log(e));
}).catch(e => {
console.error(e.stack);
t.fail(e);
});
});

@@ -120,3 +141,6 @@

t.end();
}).catch(e => console.log(e));
}).catch(e => {
console.error(e.stack);
t.fail(e);
});
});

@@ -136,3 +160,6 @@

t.end();
}).catch(e => console.log(e));
}).catch(e => {
console.error(e.stack);
t.fail(e);
});
});

@@ -145,3 +172,6 @@

t.end();
}).catch(e => console.log(e));
}).catch(e => {
console.error(e.stack);
t.fail(e);
});
});

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc