Skip to content

Commit

Permalink
Re-organize keys in package.json and add publish config
Browse files Browse the repository at this point in the history
  • Loading branch information
mesaugat committed Aug 7, 2019
1 parent 2003389 commit 35d3f85
Showing 1 changed file with 31 additions and 28 deletions.
59 changes: 31 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,41 @@
"name": "@leapfrogtechnology/sync-db",
"description": "Command line utility to synchronize and version control relational database objects across databases",
"version": "1.0.0-alpha.1",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/bin",
"/lib"
],
"bin": {
"sync-db": "./bin/run"
},
"repository": "https://github.com/leapfrogtechnology/sync-db",
"homepage": "https://github.com/leapfrogtechnology/sync-db",
"bugs": "https://github.com/leapfrogtechnology/sync-db/issues",
"keywords": [
"sync-db",
"dbo",
"db-synchronize",
"synchronize-db"
],
"author": "Kabir Baidhya <kabirbaidhya@gmail.com>",
"contributors": [
"Kabir Baidhya <kabirbaidhya@gmail.com>",
"Saugat Acharya <mesaugat@gmail.com>",
"Shraday Shakya <shradayshakya@gmail.com>"
],
"bin": {
"sync-db": "./bin/run"
"oclif": {
"bin": "sync-db"
},
"scripts": {
"posttest": "tslint -p test -t stylish",
"build": "rm -rf lib && tsc -b",
"prepack": "yarn build",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"watch": "tsc --watch"
},
"bugs": "https://github.com/leapfrogtechnology/sync-db/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
Expand Down Expand Up @@ -42,29 +67,7 @@
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/leapfrogtechnology/sync-db",
"keywords": [
"sync-db",
"dbo",
"db-synchronize",
"synchronize-db"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "sync-db"
},
"repository": "leapfrogtechnology/sync-db",
"scripts": {
"posttest": "tslint -p test -t stylish",
"build": "rm -rf lib && tsc -b",
"prepack": "yarn build",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"watch": "tsc --watch"
},
"types": "lib/index.d.ts"
"publishConfig": {
"access": "public"
}
}

0 comments on commit 35d3f85

Please sign in to comment.