forked from voltbras/ts-ocpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "ts-ocpp",
"description": "OCPP (Open Charge Point Protocol) implemented in Typescript",
"version": "2.5.10",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/embyt/ts-ocpp",
"repository": "git://github.com/embyt/ts-ocpp.git",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "tsc && npm run copy-assets",
"copy-assets": "npm run copy-assets-jsonschema",
"copy-assets-jsonschema": "cp -R ./src/messages/json ./dist/messages/json",
"prepare": "npm run build",
"prepublishOnly": "npm test && yarn docs-ts",
"postversion": "git push && git push --tags",
"lint": "eslint . --ext .js,.ts"
},
"dependencies": {
"jsonschema": "^1.4.0",
"uuid": "^8.3.2",
"ws": "^8.10.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/uuid": "^8.3.0",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"docs-ts": "^0.6.10",
"eslint": "^8.2.0",
"jest": "^27.0.6",
"prettier": "^2.2.1",
"ts-jest": "^27.0.3",
"typescript": "^4.2.3"
},
"files": [
"dist/**/*"
]
}