-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.38 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
{
"name": "@eppo/node-server-sdk",
"version": "4.0.2",
"description": "Eppo node server SDK",
"main": "dist/index.js",
"files": [
"/dist"
],
"typings": "dist/node-server-sdk.d.ts",
"scripts": {
"lint": "eslint '**/*.{ts,tsx}' --cache",
"lint:fix": "eslint --fix '**/*.{ts,tsx}' --cache",
"lint:fix-pre-commit": "eslint -c .eslintrc.pre-commit.js --fix '**/*.{ts,tsx}' --no-eslintrc --cache",
"prepare": "make prepare",
"pre-commit": "lint-staged && tsc && yarn docs",
"typecheck": "tsc",
"test": "make test",
"test:unit": "NODE_ENV=test jest '.*\\.spec\\.ts'",
"docs": "api-documenter markdown -i ./temp -o ./docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eppo-exp/node-server-sdk.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eppo-exp/node-server-sdk/issues"
},
"homepage": "https://github.com/Eppo-exp/node-server-sdk#readme",
"dependencies": {
"@eppo/js-client-sdk-common": "^5"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.30.5",
"@microsoft/api-extractor": "^7.58.7",
"@types/jest": "^30",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"eslint": "^8",
"eslint-config-prettier": "^10",
"eslint-import-resolver-typescript": "^4",
"eslint-plugin-import": "^2",
"eslint-plugin-prettier": "^5",
"eslint-plugin-promise": "^7",
"husky": "^9",
"jest": "^30",
"lint-staged": "^16",
"prettier": "^3",
"testdouble": "^3",
"ts-jest": "^29",
"typescript": "^5"
},
"engines": {
"node": ">=20.x",
"yarn": "1.x"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"resolutions": {
"@types/node": "^20.0.0",
"@microsoft/api-documenter/js-yaml": "^4.2.0"
},
"resolutionRationales": {
"@types/node": "Pinned to ^20 to keep the dev type surface aligned with engines.node >=20.x; newer @types/node would let consumer code use APIs that are not available on Node 20.",
"@microsoft/api-documenter/js-yaml": "@microsoft/api-documenter pins js-yaml ~4.1.0 even at its latest (7.30.8), which caps at the vulnerable 4.1.x; forced to ^4.2.0 to clear GHSA-h67p-54hq-rp68. Dev-only doc-gen tool; js-yaml 4.x API is stable across minors."
}
}