UNPKG

@openade/pel

Version:

Punto di Elaborazione (Elaboration Point) - Server library for managing PEMs and communicating with ADE

55 lines (54 loc) 1.24 kB
{ "name": "@openade/pel", "version": "0.0.1", "description": "Punto di Elaborazione (Elaboration Point) - Server library for managing PEMs and communicating with ADE", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "lint": "eslint src/**/*.ts", "format": "prettier --write \"src/**/*.{ts,js,json}\"", "format:check": "prettier --check \"src/**/*.{ts,js,json}\"", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage" }, "keywords": [ "italy", "fiscal", "ade", "pel", "server" ], "license": "MIT", "dependencies": { "@openade/common": "file:../common", "express": "^5.1.0", "uuid": "^13.0.0" }, "peerDependencies": { "@types/node": "^20.0.0" }, "devDependencies": { "@types/express": "^5.0.5", "@types/jest": "^30.0.0", "@types/uuid": "^11.0.0", "jest": "^30.2.0", "ts-jest": "^29.4.5", "typescript": "^5.9.3" }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "roots": [ "<rootDir>/test" ], "testMatch": [ "**/*.test.ts" ], "collectCoverageFrom": [ "src/**/*.ts", "!src/**/*.d.ts" ] } }