forked from ampeco/cpd-ocpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.27 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
82
83
84
85
86
87
88
{
"name": "@ampeco/ocpp-eliftech",
"version": "1.0.6",
"description": "OCPP 1.6: Open Charge Point Protocol",
"main": "dist/index.js",
"scripts": {
"start": "node src/server.js",
"schema": "scripts/export_typescript_from_schema.js -i ocpp-1.6-schemas/ -o schemas/",
"build": "rimraf dist && cross-env NODE_ENV=production babel src -d dist -s",
"test": "cross-env NODE_ENV=test jest --forceExit tests",
"cover": "npm run test -- --coverage",
"lint": "eslint --fix src",
"heroku-prebuild": "npm i --dev && npm i && babel examples -d examples-dist -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ampeco/cpd-ocpp.git"
},
"author": "Martin Spasov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ampeco/cpd-ocpp/issues"
},
"homepage": "https://github.com/ampeco/cpd-ocpp#readme",
"dependencies": {
"@types/express": "4.16.1",
"basic-auth": "^2.0.1",
"debug": "^3.1.0",
"enjoi": "^3.2.2",
"express": "4.16.4",
"joi": "^13.1.2",
"joi-date-extensions": "^1.1.1",
"json-schema-to-typescript": "^6.1.3",
"uuid": "^3.2.1",
"ws": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.2.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-regenerator-runtime": "^6.5.0",
"cross-env": "^5.1.3",
"eslint": "^4.18.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.12.2",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^22.3.0"
},
"babel": {
"sourceMaps": "both",
"presets": [
"env"
],
"plugins": [
"transform-runtime",
"transform-object-rest-spread"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"jest"
],
"extends": [
"standard",
"plugin:jest/recommended"
],
"env": {
"jest/globals": true
},
"rules": {
"semi": [
2,
"always"
]
}
},
"directories": {
"example": "examples",
"test": "tests"
}
}