UNPKG

@evpower/ocpp-ts

Version:

OCPP 1.6: Open Charge Point Protocol

57 lines (56 loc) 1.65 kB
{ "name": "@evpower/ocpp-ts", "version": "0.4.2", "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", "uuid": "^8.3.2", "ws": "^8.3.0" }, "devDependencies": { "@babel/core": "^7.16.5", "@babel/preset-env": "^7.16.5", "@babel/preset-typescript": "^7.16.5", "@types/jest": "^27.0.3", "@types/uuid": "^8.3.3", "@types/ws": "^8.2.2", "@typescript-eslint/eslint-plugin": "^5.7.0", "@typescript-eslint/parser": "^5.7.0", "babel-jest": "^27.4.5", "directory-tree": "^3.0.1", "eslint": "^8.4.1", "eslint-config-airbnb": "^19.0.2", "eslint-config-airbnb-typescript": "^16.1.0", "jest": "^27.4.5", "json-schema-to-typescript": "^10.1.5", "ts-node": "^10.4.0", "typescript": "^4.5.4" }, "publishConfig": { "access": "public" } }