-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.73 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
{
"name": "bolt-driver-api",
"version": "1.0.2",
"description": "Official Node.js SDK for Bolt Driver API - communicate with Bolt's driver platform like the mobile app",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watchAll",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"examples": "ts-node examples/index.ts",
"examples:auth": "ts-node examples/auth.ts",
"examples:cli": "ts-node examples/cli.ts",
"examples:enhanced": "ts-node examples/enhanced.ts",
"examples:magic-link": "ts-node examples/magic-link-example.ts",
"examples:logging": "ts-node examples/logging-control-example.ts",
"test:magic-link": "ts-node examples/test-magic-link.ts",
"examples:bolt-driver": "ts-node examples/bolt-driver-endpoints.ts",
"examples:inspect": "ts-node examples/inspect-responses.ts",
"examples:navigation": "ts-node examples/ride-navigation.ts",
"test:examples": "ts-node examples/automated-test.ts",
"test:all": "npm run test && npm run test:examples",
"prepare": "npm run build",
"release": "npm version patch && npm publish"
},
"keywords": [
"bolt",
"driver",
"api",
"ride-sharing",
"taxi",
"transportation",
"sdk",
"nodejs",
"typescript"
],
"author": "Adrian Dacka <remix3030303@hotmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/syrex1013/bolt-driver-api-sdk.git"
},
"bugs": {
"url": "https://github.com/syrex1013/bolt-driver-api-sdk/issues"
},
"homepage": "https://github.com/syrex1013/bolt-driver-api-sdk#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/syrex1013"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"@types/dotenv": "^8.2.3",
"axios": "^1.6.0",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"dotenv": "^17.2.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.0",
"@types/prompts": "^2.4.9",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"audit-ci": "^6.0.0",
"boxen": "^8.0.1",
"chalk": "^5.6.0",
"eslint": "^8.52.0",
"inquirer": "^12.9.3",
"jest": "^29.7.0",
"ora": "^8.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.5.4"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
]
}