-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 972 Bytes
/
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
{
"name": "ocpi-tool",
"version": "1.0.0",
"description": "A command-line tool for exporting data from OCPI platforms",
"main": "dist/index.js",
"scripts": {
"test": "jest --coverage",
"build": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ocpi/ocpi-tool.git"
},
"keywords": [
"OCPI"
],
"bin": {
"ocpi": "./bin/ocpi"
},
"author": "EV Roaming Foundation",
"license": "MIT",
"bugs": {
"url": "https://github.com/ocpi/ocpi-tool/issues"
},
"homepage": "https://github.com/ocpi/ocpi-tool#readme",
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/node": "^18.11.9",
"@types/parse-link-header": "^2.0.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"ajv": "^8.11.2",
"axios": "^1.1.3",
"commander": "^9.4.1",
"parse-link-header": "^2.0.0",
"tslib": "^2.4.1"
}
}