forked from momentohq/client-sdk-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.56 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@gomomento/sdk",
"version": "0.0.1",
"description": "Client SDK for Momento services",
"main": "dist/src/index.js",
"files": [
"dist/src",
"dist/package.json"
],
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/momentohq/client-sdk-javascript"
},
"scripts": {
"prebuild": "eslint . --ext .ts",
"test": "jest",
"integration": "jest --config jest-integration.config.ts",
"lint": "eslint . --ext .ts",
"format": "eslint . --ext .ts --fix",
"watch": "tsc -w",
"build": "rm -rf dist && tsc"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/google-protobuf": "^3.15.5",
"@types/jest": "^27.0.2",
"@types/node": "14.18.3",
"@types/pino": "7.0.5",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^29",
"jest-extended": "^3.2.3",
"prettier": "^2.4.1",
"ts-jest": "^29",
"ts-node": "^10.3.0",
"typescript": "^4.4.3",
"uuid": "8.3.2"
},
"dependencies": {
"@gomomento/generated-types": "0.32.1",
"@grpc/grpc-js": "1.7.3",
"jose": "4.10.2",
"jwt-decode": "3.1.2",
"pino": "8.1.0",
"pino-pretty": "8.1.0"
},
"engines": {
"node": ">= 14"
}
}