-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
50 lines (50 loc) · 1.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "ocpp-ts",
"version": "0.3.1",
"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",
"build": "rm -rf ./dist/ && tsc",
"test": "jest"
},
"keywords": [
"ocpp",
"typescript",
"charging-station",
"central-system",
"websocket"
],
"author": "Evgeni Gordejev",
"license": "MIT",
"bugs": {
"url": "https://github.com/sepych/ocpp-ts/issues"
},
"homepage": "https://github.com/sepych/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"
}
}