Initial commit

This commit is contained in:
Daniel Scalzi
2019-07-28 13:55:51 -04:00
commit 68e09fbac7
9 changed files with 817 additions and 0 deletions

40
package.json Normal file
View File

@@ -0,0 +1,40 @@
{
"name": "nebula",
"version": "0.1.0",
"description": "Utility package to generate a distribution.json for Helios.",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"tsc": "tsc",
"build": "npm run clean && npm run tsc",
"start": "npm run build && node dist/index.js",
"lint": "tslint --project ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dscalzi/Nebula.git"
},
"keywords": [
"helios",
"nebula",
"distribution"
],
"author": "Daniel Scalzi",
"license": "MIT",
"bugs": {
"url": "https://github.com/dscalzi/Nebula/issues"
},
"homepage": "https://github.com/dscalzi/Nebula#readme",
"devDependencies": {
"@types/node": "^12.6.8",
"@types/yargs": "^13.0.0",
"rimraf": "^2.6.3",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"dependencies": {
"adm-zip": "^0.4.13",
"fs-extra": "^8.1.0",
"yargs": "^13.3.0"
}
}