-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.19 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
{
"name": "traveltime-api",
"version": "6.1.4",
"description": "TravelTime API SDK for node js with TypeScript",
"main": "target/index.js",
"types": "target/index.d.ts",
"scripts": {
"build": "tsc && cp -R src/client/proto target/client",
"clean": "rm -rf node_modules && rm -rf target && rm -f main.ts",
"dev": "ts-node main.ts",
"release": "npm run clean && npm i && npm run build && npm publish",
"release-rc": "npm run clean && npm i && npm run build && npm publish --tag rc"
},
"repository": {
"type": "git",
"url": "https://github.com/traveltime-dev/traveltime-sdk-nodejs"
},
"author": "TravelTime <[email protected]> (https://traveltime.com/)",
"license": "MIT",
"dependencies": {
"agentkeepalive": "^4.5.0",
"axios": "^1.7.5",
"protobufjs": "^7.3.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"keywords": [
"traveltime",
"api",
"maps"
],
"files": [
"target/**/*"
]
}