Files
patatapack2-distribution/package.json
Daniel Scalzi 24b0923903 Add support for untracked files.
Untracked file glob patterns are stored in the servermeta.json. See the README for detailed information.
2020-09-12 22:46:50 -04:00

54 lines
1.4 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": "eslint . --ext .js,.ts"
},
"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/fs-extra": "^9.0.1",
"@types/minimatch": "^3.0.3",
"@types/node": "^12.12.58",
"@types/triple-beam": "^1.3.2",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.9.0",
"rimraf": "^3.0.2",
"typescript": "^4.0.2"
},
"dependencies": {
"dotenv": "^8.2.0",
"fs-extra": "^9.0.1",
"got": "^11.6.2",
"helios-distribution-types": "^1.0.0-rc.1",
"minimatch": "^3.0.4",
"moment": "^2.27.0",
"node-stream-zip": "^1.11.3",
"toml": "^3.0.0",
"triple-beam": "^1.3.0",
"winston": "^3.3.3",
"yargs": "^16.0.3"
}
}