rrdtool.ts
Version:
RRDTool High Level library for Node.js written in TypeScript
50 lines (49 loc) • 1.49 kB
JSON
{
"name": "rrdtool.ts",
"version": "1.0.1",
"description": "RRDTool High Level library for Node.js written in TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write src/**/*.ts",
"link": "npm run build && npm link",
"lint": "eslint src --ext .ts",
"lint-fix": "eslint src --ext .ts --fix",
"test": "jest --config jestconfig.json",
"test:coverage": "jest --config jestconfig.json --coverage",
"version": "npm run format && git add -A src"
},
"repository": {
"type": "git",
"url": "git@github.com:filiptypjeu/npm-rrdtool.ts.git"
},
"dependencies": {
"lodash": "^4.17.21",
"queue": "^6.0.2"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.0",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^28.1.2",
"prettier": "^2.5.1",
"tmp": "0.0.23",
"ts-jest": "^28.0.5",
"ts-node": "^10.0.0",
"typescript": "^4.5.5"
},
"files": [
"dist"
],
"keywords": [
"rrdtool",
"database",
"round-robin"
]
}