Skip to content

Commit

Permalink
Make the package installable from github directly.
Browse files Browse the repository at this point in the history
with `npm install git+ssh:git@github.com:jsalvata/ts-json-serializer.git`
  • Loading branch information
jsalvata committed Jun 15, 2018
1 parent 5398981 commit c7bce3c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"predevelop": "npm run clean",
"develop": "tsc -p .",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig/build.json"
"build": "tsc -p ./tsconfig/build.json",
"prepack": "npm install; tsc -p ./tsconfig/build.json"
},
"keywords": [
"typescript",
Expand Down Expand Up @@ -43,10 +44,10 @@
"remap-istanbul": "^0.9.1",
"tslint": "^4.4.2",
"tslint-jsdoc-rules": "^0.1.2",
"typescript": "^2.1.6"
"typescript": "^2.1.6",
"tslib": "^1.5.0"
},
"dependencies": {
"reflect-metadata": "^0.1.9",
"tslib": "^1.5.0"
"reflect-metadata": "^0.1.9"
}
}

0 comments on commit c7bce3c

Please sign in to comment.