-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.56 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.56 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
{
"name": "@factset/sdk-utils",
"description": "Utilities for interacting with FactSet APIs.",
"version": "2.1.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": "concurrently -n Prettier,esLint \"yarn prettier:check\" \"yarn eslint:check\"",
"lint:fix": "yarn prettier:fix && yarn eslint:fix",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"eslint:check": "eslint src",
"eslint:fix": "eslint --fix src",
"test": "jest --silent",
"prepublishOnly": "yarn build"
},
"files": [
"lib",
"CONTRIBUTING.md"
],
"dependencies": {
"debug": "^4.4.3",
"https-proxy-agent": "^7.0.6",
"joi": "^18.0.2",
"jose": "^4.15.9",
"openid-client": "^5.7.1"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.6",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.54.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"packageManager": "yarn@4.12.0"
}