-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.99 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.99 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
{
"name": "@ironcorelabs/tenant-security-nodejs",
"version": "4.1.1",
"description": "NodeJS client library for the IronCore Labs Tenant Security Proxy.",
"homepage": "https://ironcorelabs.com/docs",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/IronCoreLabs/tenant-security-client-nodejs.git"
},
"author": "IronCore Labs",
"license": "AGPL-3.0-only OR LicenseRef-ironcore-labs-commercial-license",
"types": "src/index.d.ts",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "./build.js",
"test": "yarn run lint && yarn run unit",
"unit": "jest -t UNIT",
"integration": "jest -t \"INTEGRATION|UNIT\"",
"local": "jest -t LOCAL",
"lint": "eslint . --ext .ts",
"testsingle": "jest",
"protobuild": "pbjs -t static-module -w commonjs -o proto/ts/DocumentHeader.js proto/document_header.proto && pbts -o proto/ts/DocumentHeader.d.ts proto/ts/DocumentHeader.js"
},
"dependencies": {
"futurejs": "2.2.0",
"joi": "^18.0.2",
"miscreant": "^0.3.2",
"node-fetch": "2.6.12",
"protobufjs": "^7.2.5"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^13.13.15",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^6.8.0",
"jest": "^26.4.1",
"jest-extended": "^0.11.5",
"prompt": "^1.0.0",
"protobufjs-cli": "^1.1.1",
"shelljs": "^0.8.4",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"typestrict": "^1.0.2",
"uglify-js": "^3.7.7"
},
"prettier": {
"printWidth": 160,
"tabWidth": 4,
"trailingComma": "es5",
"bracketSpacing": false,
"jsxBracketSameLine": true,
"arrowParens": "always",
"overrides": [
{
"files": "*.yml",
"options": {
"tabWidth": 2
}
}
]
},
"overrides": {
"tmp": "^0.2.4"
},
"resolutions": {
"tmp": "^0.2.4"
}
}