This repository was archived by the owner on Dec 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.88 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.88 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
{
"name": "@gr4vy/node",
"version": "1.4.0",
"description": "NodeJS client for @gr4vy/node",
"repository": {
"type": "git",
"url": "https://github.com/gr4vy/gr4vy-node.git"
},
"main": "dist/sdk/index.js",
"types": "dist/sdk/index.d.ts",
"exports": {
"require": "./dist/sdk/index.js",
"import": "./esm/index.js"
},
"scripts": {
"clean": "rm -rf node_modules/ dist/*",
"build": "tsc",
"prepack": "yarn build",
"release": "yarn version; git push --tags; git push",
"test": "jest",
"lint": "eslint sdk -c eslint.config.mjs"
},
"author": "Gr4vy <code@gr4vy.com>",
"license": "MIT",
"dependencies": {
"@trust/keyto": "^1.0.1",
"@types/bluebird": "^3.5.42",
"bluebird": "^3.7.2",
"jsonwebtoken": "^9.0.2",
"jwk-thumbprint": "^0.1.4",
"request": "^2.88.2",
"snakecase-keys": "^8.0.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@eslint/compat": "^1.1.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@types/request": "^2.48.12",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"babel-jest": "^29.5.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.7.0",
"jest": "^29.5.0",
"prettier": "^3.3.2",
"timekeeper": "^2.2.0",
"typescript": "^5.0.2"
},
"bugs": {
"url": "https://github.com/gr4vy/gr4vy-node/issues"
},
"homepage": "https://github.com/gr4vy/gr4vy-node#readme",
"resolutions": {
"json-schema": "^0.4.0",
"tough-cookie": "^4.1.3",
"elliptic": "^6.5.7",
"form-data": "^4.0.4"
}
}