js-logging/package.json

32 lines
708 B
JSON
Raw Permalink Normal View History

{
"name": "@jdbernard/logging",
"version": "2.0.0",
"description": "Simple Javascript logging service.",
2021-08-16 23:03:57 -05:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
2023-05-29 18:59:43 -05:00
"files": [
"/dist"
],
"scripts": {
2023-05-29 18:59:43 -05:00
"build": "tsc",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.jdb-software.com/jdb/js-logging.git"
},
"keywords": [
"log",
"logging"
],
"author": "Jonathan Bernard",
"license": "GPL-3.0",
"devDependencies": {
2025-01-02 17:01:39 -06:00
"@typescript-eslint/parser": "^8.19.0",
"eslint-plugin-import": "^2.31.0",
"typescript": "^5.0.4",
"typescript-eslint": "^8.19.0"
}
}