-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.86 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
{
"name": "@eppo/node-server-sdk",
"version": "3.5.0",
"description": "Eppo node server SDK",
"main": "dist/index.js",
"files": [
"/dist"
],
"typings": "dist/node-server-sdk.d.ts",
"scripts": {
"lint": "eslint '**/*.{ts,tsx}' '**/*.d.{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": "yarn test:unit",
"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": "4.3.0",
"lru-cache": "^10.0.1"
},
"devDependencies": {
"@google-cloud/storage": "^6.9.3",
"@microsoft/api-documenter": "^7.23.9",
"@microsoft/api-extractor": "^7.38.0",
"@types/express": "^4.17.13",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"express": "^4.18.0",
"husky": "^6.0.0",
"jest": "^29.7.0",
"lint-staged": "^12.3.5",
"prettier": "^2.2.1",
"testdouble": "^3.16.4",
"ts-jest": "^29.0.0",
"typescript": "^4.2.4"
},
"engines": {
"node": ">=18.x",
"yarn": "1.x"
}
}