dptlib/package.json
2022-03-09 22:38:02 +01:00

40 lines
962 B
JSON

{
"name": "dptlib",
"version": "0.0.1",
"description": "KNX DPT library",
"main": "lib/index.js",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"chai": "^4.3.6",
"eslint": "^8.8.0",
"mocha": "^9.2.0",
"mochawesome": "^7.1.2",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"ts-mocha": "^9.0.2",
"typescript": "^4.5.5"
},
"scripts": {
"build": "tsc",
"test": "ts-mocha --reporter mochawesome tests/**/*.test.ts",
"coverage": "nyc npm test",
"lint": "eslint --fix \"**/*.ts\""
},
"repository": {
"type": "git",
"url": "http://git.home.lipc.tech/laur/dptlib.git"
},
"keywords": [
"knx",
"dpt",
"typescript"
],
"author": "Laur Ivan",
"license": "GPL-3.0-or-later"
}