Files
patatapack2-distribution/package.json
Daniel Scalzi 68e09fbac7 Initial commit
2019-07-28 13:55:51 -04:00

41 lines
956 B
JSON

{
"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"
}
}