-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
81 lines (81 loc) · 2.03 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@extrawest/node-ts-ocpp",
"version": "1.0.3",
"description": "OCPP 2.0.1: Open Charge Point Protocol",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"homepage": "https://github.com/extrawest/ocpp-node-ts/",
"scripts": {
"compileSchema": "npx ts-node scripts/compile.ts",
"prepublish": "npm run build",
"build": "tsc",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"create-badges": "istanbul-badges-readme"
},
"keywords": [
"ocpp",
"typescript",
"charging-station",
"central-system",
"websocket",
"Extrawest"
],
"author": "Extrawest",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/extrawest/ocpp-node-ts/"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"uuid": "^9.0.0",
"ws": "^8.12.1"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/jest": "^27.5.1",
"@types/node": "^18.14.0",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"directory-tree": "^3.5.1",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"istanbul-badges-readme": "^1.8.5",
"jest": "^28.1.0",
"jest-websocket-mock": "^2.4.0",
"json-schema-to-typescript": "^11.0.4",
"mock-socket": "^9.2.1",
"ts-jest": "^28.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageReporters": [
"json-summary",
"lcov"
],
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}