We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30485f0 commit 6b0279dCopy full SHA for 6b0279d
package.json
@@ -2,7 +2,9 @@
2
"name": "visionBoard",
3
"version": "1.0.0",
4
"description": "Transforming Data into Actionable insights",
5
- "main": "index.js",
+ "bin": {
6
+ "visionBoard": "visionboard.js"
7
+ },
8
"scripts": {
9
"lint": "standard",
10
"lint:fix": "standard --fix",
index.js renamed to visionboard.js
@@ -1,3 +1,5 @@
1
+#!/usr/bin/env node
+
const { Command } = require('commander')
const pkg = require('./package.json')
const { getConfig } = require('./src/config')
0 commit comments