-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.23 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
{
"name": "@evervault/sdk",
"version": "6.4.0",
"description": "Node.js SDK for Evervault",
"packageManager": "pnpm@11.9.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"prepare": "husky install",
"build": "tsup",
"format": "prettier --check \"./**/*.{ts,js}\"",
"typecheck": "tsc --noEmit",
"test": "mocha 'tests/**/*.test.js'",
"test:e2e": "mocha 'e2e/**/*.test.js' --timeout 30000 --exit",
"test:filter": "mocha 'tests/**/*.test.js' --grep",
"test:e2e:filter": "mocha 'e2e/**/*.test.js' --timeout 30000 --grep",
"test:coverage": "nyc --reporter=text pnpm run test",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evervault/evervault-node.git"
},
"keywords": [
"node",
"evervault",
"enclaves",
"encryption",
"cryptography"
],
"author": "Evervault (https://evervault.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/evervault/evervault-node/issues"
},
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"homepage": "https://github.com/evervault/evervault-node#readme",
"dependencies": {
"agent-base": "^6.0.2",
"asn1js": "^3.0.5",
"async-retry": "^1.3.3",
"axios": "^1.12.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.2",
"@types/async-retry": "^1.4.9",
"@types/node": "^22.10.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"crc-32": "^1.2.2",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"mocha": "^10.0.0",
"msgpackr": "^1.9.9",
"nock": "^12.0.3",
"nyc": "^17.0.0",
"prettier": "^2.8.8",
"proxy": "^1.0.2",
"proxyquire": "^2.1.3",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
},
"release": {
"branches": [
"master"
]
},
"lint-staged": {
"**/*.{ts,js}": "prettier --write --ignore-unknown"
}
}