policyreinsure 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
+ # policyreinsure
2
+ > PolicyReinsure - Reinsurance placement and treaty management by InsurEco Systems.
3
+ By [InsurEco Systems](https://insureco.io)
4
+ **https://policyreinsure.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 policyreinsure() {
3
+ console.log('policyreinsure v0.0.1 - PolicyReinsure - Reinsurance placement and treaty management by InsurEco Systems.');
4
+ console.log('InsurEco Systems | https://policyreinsure.io');
5
+ };
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "policyreinsure",
3
+ "version": "0.0.1",
4
+ "description": "PolicyReinsure - Reinsurance placement and treaty management by InsurEco Systems.",
5
+ "main": "index.js",
6
+ "bin": { "policyreinsure": "./bin/policyreinsure.js" },
7
+ "keywords": ["insureco", "policyreinsure", "insurance", "tawa"],
8
+ "author": "InsurEco Systems <derek@insureco.io>",
9
+ "license": "UNLICENSED",
10
+ "repository": { "type": "git", "url": "https://github.com/insureco/policyreinsure" },
11
+ "homepage": "https://policyreinsure.io"
12
+ }