-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.3 KB
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
89
90
91
92
93
94
{
"name": "mapflow-co-sdk",
"version": "1.0.1",
"description": "Official Node.js & TypeScript SDK for MapFlow — Route Optimization, Delivery Management & Logistics API. Manage customers, warehouses, drivers, vehicles, visits and product catalog from your JS/TS applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:crud": "npx ts-node test-full-crud.ts",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"mapflow",
"route-optimization",
"optimisation-tournees",
"optimisation-de-tournee",
"delivery-management",
"gestion-livraisons",
"logistics",
"logistique",
"fleet-management",
"gestion-flotte",
"delivery",
"livraison",
"route-planning",
"planification-tournees",
"api",
"sdk",
"typescript",
"last-mile",
"last-mile-delivery",
"livraison-dernier-kilometre",
"vrp",
"vehicle-routing",
"tour-optimization",
"dispatching",
"warehouse",
"entrepot",
"driver-management",
"gestion-chauffeurs",
"visit-scheduling",
"delivery-api",
"logistics-api",
"mapflow-co"
],
"author": "MapFlow <support@mapflow.co> (https://mapflow.co)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mapflow-co/node-sdk.git"
},
"bugs": {
"url": "https://github.com/mapflow-co/node-sdk/issues"
},
"homepage": "https://mapflow.co",
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.19.25",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"dotenv": "^17.2.3",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.2.0"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
}