-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
52 lines (52 loc) · 1.7 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
{
"name": "@voltbras/ts-ocpp",
"description": "OCPP (Open Charge Point Protocol) implemented in Typescript",
"version": "2.15.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/voltbras/ts-ocpp",
"repository": "git://github.com/voltbras/ts-ocpp.git",
"author": "eduhenke <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "tsc && yarn copy-assets && yarn docs-ts",
"copy-assets": "yarn copy-assets-wsdl && yarn copy-assets-jsonschema",
"copy-assets-wsdl": "cp ./src/messages/soap/*.wsdl ./dist/messages/soap",
"copy-assets-jsonschema": "cp -R ./src/messages/json ./dist/messages/json",
"prepare": "yarn build",
"prepublishOnly": "npm test && yarn docs-ts",
"postversion": "git push && git push --tags",
"lint": "eslint . --ext .js,.ts"
},
"dependencies": {
"@voltbras/ts-ocpp": "^2.7.3",
"debug": "^4.3.4",
"jsonschema": "^1.4.0",
"purify-ts": "^0.16.2",
"soap": "^0.37.0",
"uuid": "^8.3.2",
"ws": "^7.4.4"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^26.0.22",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.1",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"docs-ts": "^0.6.10",
"eslint": "^7.23.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"files": [
"dist/**/*"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}