UNPKG

@hg8496/energyday-creator

Version:

A tool that create proto buffers from GridVis REST API

68 lines (67 loc) 1.81 kB
{ "name": "@hg8496/energyday-creator", "version": "1.0.23", "description": "A tool that create proto buffers from GridVis REST API", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm test && npm run lint", "version": "npm run format && git add -A lib", "postversion": "git push && git push --tags", "build": "tsc", "format": "prettier --write \"lib/**/*.ts\"", "lint": "tslint -p tsconfig.json", "test": "jest --coverage --config jestconfig.json", "coveralls": "jest --config jestconfig.json --coverage --coverageReporters=text-lcov | coveralls" }, "files": [ "dist" ], "bin": { "energyday-creator": "./dist/cli.js" }, "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/hg8496/energyday-creator.git" }, "keywords": [ "janitza", "GridVis", "nodejs", "typescript" ], "author": "hg8496@cstolz.de", "license": "ISC", "bugs": { "url": "https://github.com/hg8496/gridvis-client/issues" }, "homepage": "https://github.com/hg8496/gridvis-client#readme", "dependencies": { "@hg8496/definitions": "^2.0.1", "@hg8496/gridvis-client": "^1.3.7", "commander": "^5.1.0", "moment": "^2.27.0" }, "devDependencies": { "@types/jest": "^25.2.3", "@types/node": "^14.0.22", "coveralls": "^3.1.0", "husky": "^4.2.5", "jest": "^26.1.0", "prettier": "^1.19.1", "ts-jest": "^26.1.1", "tslint": "^6.1.2", "tslint-config-prettier": "^1.18.0", "typescript": "^3.9.6" }, "husky": { "hooks": { "pre-commit": "npm run build && npm test && npm run lint && npm run format" } } }