turya-backup-code 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/bin/index.js +2 -0
  2. package/package.json +14 -0
package/bin/index.js ADDED
@@ -0,0 +1,2 @@
1
+ #! /usr/bin/env node
2
+ console.log("Hello, package!");
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "turya-backup-code",
3
+ "version": "1.0.0",
4
+ "description": "To backup a folder of code",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "backup-code": "bin/index.js"
8
+ },
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ },
12
+ "author": "Turya",
13
+ "license": "ISC"
14
+ }