UNPKG

properties-gen

Version:

CLI to generate environment properties based on config

51 lines (50 loc) 1.22 kB
{ "name": "properties-gen", "version": "1.1.2", "description": "CLI to generate environment properties based on config", "main": "./lib/index.js", "repository": { "type": "git", "url": "https://github.com/jaycorpstudios/properties-gen" }, "bin": { "properties-gen": "./lib/index.js" }, "files": [ "lib" ], "scripts": { "dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts", "build": "tsc -p .", "test": "echo \"Error: no test specified\" && exit 1", "format:fix": "prettier --write 'src/**/*.ts'", "format:check": "prettier --check 'src/**/*.ts'", "prepare": "npm run build" }, "keywords": [ "custom-environment-variables", "node-config", "config-generator", "cli", "configuration", "properties" ], "author": "jaycorpstudios", "license": "ISC", "dependencies": { "ajv": "^8.11.2", "ajv-formats": "^2.1.1", "chalk": "^4.1.2", "commander": "^9.4.1", "fs.promises": "^0.1.2", "json5": "^2.2.1", "prompts": "^2.4.2" }, "devDependencies": { "@types/node": "^18.11.9", "nodemon": "^2.0.20", "prettier": "^2.7.1", "ts-node": "^10.9.1", "typescript": "^4.9.3" } }