configuration-reader
Version:
43 lines • 967 B
JSON
{
"name": "configuration-reader",
"version": "1.0.6",
"description": "As simple as it gets",
"author": "Michael Spengler",
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/index.js",
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"tslint": "tslint -p ./",
"build-and-publish": "tsc && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/michael-spengler/configuration-reader"
},
"keywords": [
"Configuration",
"Reader"
],
"husky": {
"hooks": {
"pre-commit": "npm run tslint && npm run test"
}
},
"dependencies": {
"@types/dotenv": "^6.1.0",
"@types/jest": "^21.0.0",
"@types/node": "^10.12.18",
"dotenv": "^6.2.0",
"fs": "0.0.1-security",
"jest": "^23.6.0",
"path": "^0.12.7",
"ts-jest": "^23.10.5"
},
"devDependencies": {
"husky": "^1.3.1",
"tslint": "^5.12.1",
"typescript": "^3.2.4"
}
}