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