-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.85 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@evervault/sdk",
"version": "6.2.3",
"description": "Node.js SDK for Evervault",
"main": "lib/index.js",
"typings": "types/index.d.ts",
"scripts": {
"prepare": "husky install",
"lint": "prettier --check \"./**/*.js\"",
"test": "mocha 'tests/**/*.test.js' --timeout 30000",
"test:e2e": "mocha 'e2e/**/*.test.js' --timeout 5000 --exit",
"test:filter": "mocha 'tests/**/*.test.js' --grep",
"test:coverage": "nyc --reporter=text npm run test",
"prepublishOnly": "npm run generate-types",
"generate-types": "tsc lib/*.js lib/**/*.js --declaration --allowJs --emitDeclarationOnly --allowSyntheticDefaultImports --outDir types"
},
"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": [
"lib",
"types"
],
"homepage": "https://github.com/evervault/evervault-node#readme",
"dependencies": {
"agent-base": "^6.0.2",
"asn1js": "^3.0.5",
"async-retry": "^1.3.3",
"crc-32": "^1.2.2",
"uuid": "^8.1.0",
"axios": "^1.7.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"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.3.2",
"proxy": "^1.0.2",
"rewire": "^7.0.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"typescript": "^5.3.3"
},
"release": {
"branches": [
"master"
]
},
"lint-staged": {
"**/*.js": "prettier --write --ignore-unknown \"./**/*.js\""
}
}