policyinsure 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # policyinsure
2
+ > PolicyInsure - End-to-end insurance issuance platform by InsurEco Systems.
3
+ By [InsurEco Systems](https://insureco.io)
4
+ **https://policyinsure.io**
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ 'use strict';
3
+ const run = require('../index');
4
+ run();
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ 'use strict';
2
+ module.exports = function policyinsure() {
3
+ console.log('policyinsure v0.0.1 - PolicyInsure - End-to-end insurance issuance platform by InsurEco Systems.');
4
+ console.log('InsurEco Systems | https://policyinsure.io');
5
+ };
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "policyinsure",
3
+ "version": "0.0.1",
4
+ "description": "PolicyInsure - End-to-end insurance issuance platform by InsurEco Systems.",
5
+ "main": "index.js",
6
+ "bin": { "policyinsure": "./bin/policyinsure.js" },
7
+ "keywords": ["insureco", "policyinsure", "insurance", "tawa"],
8
+ "author": "InsurEco Systems <derek@insureco.io>",
9
+ "license": "UNLICENSED",
10
+ "repository": { "type": "git", "url": "https://github.com/insureco/policyinsure" },
11
+ "homepage": "https://policyinsure.io"
12
+ }