-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "@onfleet/node-onfleet",
"version": "1.3.8",
"description": "Onfleet's Node.js API Wrapper Package",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js ./",
"lint-fix": "eslint --fix --ext .js ./",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/onfleet/node-onfleet.git"
},
"keywords": [
"node-onfleet"
],
"author": "James Li",
"contributors": [
"Julián Pérez",
"Santiago Botero"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/onfleet/node-onfleet/issues"
},
"homepage": "https://onfleet.com/",
"type": "module",
"dependencies": {
"bottleneck": "^2.19.5",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"chai": "^5.1.1",
"chai-as-promised": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"minimist": "^1.2.8",
"mocha": "^10.7.3",
"nock": "^13.5.5"
},
"engines": {
"node": ">=20.0.0"
}
}