@evpower/ocpp-ts
Version:
OCPP 1.6: Open Charge Point Protocol
56 lines (55 loc) • 1.6 kB
JSON
{
"name": "@evpower/ocpp-ts",
"version": "0.4.4",
"description": "OCPP 1.6: Open Charge Point Protocol",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"compileSchema": "npx ts-node scripts/compileSchemas.ts",
"prepublish": "npm run build",
"prebuild": "npm run clean:win && npm run clean:linux",
"clean:win": "node -e \"if (process.platform === 'win32') process.exit(1)\" || , if exist build rmdir /Q /S dist",
"clean:linux": "node -e \"if (process.platform !== 'win32') process.exit(1)\" || rm -rf dist",
"build": "tsc",
"test": "jest"
},
"keywords": [
"ocpp",
"typescript",
"charging-station",
"central-system",
"websocket"
],
"author": "Evgeni Gordejev",
"license": "MIT",
"bugs": {
"url": "https://github.com/evpower-ai/ocpp-ts/issues"
},
"homepage": "https://github.com/evpower-ai/ocpp-ts",
"dependencies": {
"ajv": "^6.12.6",
"status-code-enum": "^1.0.0",
"uuid": "^8.3.2",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/glob": "^9.0.0",
"@types/jest": "^27.0.3",
"@types/uuid": "^8.3.3",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"directory-tree": "^3.0.1",
"eslint": "^8.4.1",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-airbnb-typescript": "^16.1.0",
"jest": "^29.7.0",
"json-schema-to-typescript": "^10.1.5",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"publishConfig": {
"access": "public"
}
}