All pack.xz libraries now have their MD5s properly calculated. Sha1 validations are performed on jar libraries. The checksums forge provides for compressed files are neither the sha1 or md5 of the initial or extracted file. Ignoring those for now. Still TODO is integration with baseurl. Might move both that and base path to the .env file to reduce redundency in command processing.
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
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/adm-zip": "^0.4.32",
|
|
"@types/fs-extra": "^8.0.1",
|
|
"@types/node": "^12.12.24",
|
|
"@types/yargs": "^15.0.0",
|
|
"rimraf": "^3.0.0",
|
|
"tslint": "^5.20.1",
|
|
"typescript": "^3.7.4"
|
|
},
|
|
"dependencies": {
|
|
"adm-zip": "^0.4.13",
|
|
"axios": "^0.19.1",
|
|
"dotenv": "^8.2.0",
|
|
"fs-extra": "^8.1.0",
|
|
"yargs": "^15.1.0"
|
|
}
|
|
}
|