-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "@factset/sdk-utils",
"description": "Utilities for interacting with FactSet APIs.",
"version": "2.0.1",
"homepage": "https://developer.factset.com",
"repository": "FactSet/enterprise-sdk-utils-typescript.git",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "FactSet Research Systems",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"keywords": [
"FactSet",
"API",
"SDK"
],
"scripts": {
"build": "rm -rf ./lib && tsc",
"lint": "eslint '**/*.{js,ts,tsx}'",
"test": "jest --silent",
"prepublishOnly": "yarn build"
},
"files": [
"lib",
"CONTRIBUTING.md"
],
"dependencies": {
"debug": "^4.3.5",
"https-proxy-agent": "^7.0.2",
"joi": "^17.13.1",
"jose": "^4.15.4",
"openid-client": "^5.6.5"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^27.4.1",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.5.1",
"prettier": "^2.8.8",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}