UNPKG

yaml-config-ts

Version:

Typescript library to get config from YAML file

56 lines (55 loc) 1.41 kB
{ "name": "yaml-config-ts", "version": "0.1.1", "description": "Typescript library to get config from YAML file", "author": "Adanos Flamel", "license": "MIT", "main": "build/index.js", "types": "build/index.d.ts", "scripts": { "build": "rimraf ./build && npx tsc --pretty", "clean": "rimraf ./build", "watch": "npx tsc -w", "start:dev": "nodemon", "start": "npm run build && node build/index.js", "test": "echo \"Error: no test specified\" && exit 1", "example": "npx tsc example/example.ts --downlevelIteration --outDir ./build && node build/example/example.js" }, "repository": { "type": "git", "url": "git+https://github.com/iAdanos/yaml-config-ts.git" }, "keywords": [ "Config", "Yaml", "Yml", "Configuration", "Settings", "Parameters", "Typescript", "TS", "Stack", "Deploy" ], "bugs": { "url": "https://github.com/iAdanos/yaml-config-ts/issues" }, "homepage": "https://github.com/iAdanos/yaml-config-ts#readme", "dependencies": { "@types/lodash": "^4.14.165", "@types/node": "^14.14.14", "fs": "0.0.1-security", "lodash": "^4.17.20", "rimraf": "^3.0.2", "ts-deepmerge": "^1.0.6", "ts-node": "^9.1.1", "typescript": "^4.1.3", "yaml": "^1.10.0" }, "devDependencies": { "nodemon": "^2.0.6" }, "directories": { "example": "example" } }