-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.48 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@eppo/js-client-sdk-common",
"version": "4.8.3",
"description": "Common library for Eppo JavaScript SDKs (web, react native, and node)",
"main": "dist/index.js",
"files": [
"/dist",
"/src",
"!*.spec.ts"
],
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18.x"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"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",
"typecheck": "tsc",
"test": "yarn test:unit",
"test:unit": "NODE_ENV=test jest '.*\\.spec\\.ts'",
"obfuscate-mock-ufc": "ts-node test/writeObfuscatedMockUFC"
},
"jsdelivr": "dist/eppo-sdk.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Eppo-exp/js-client-sdk-common.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eppo-exp/js-client-sdk-common/issues"
},
"homepage": "https://github.com/Eppo-exp/js-client-sdk-common#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/js-base64": "^3.3.1",
"@types/lodash": "^4.17.5",
"@types/semver": "^7.5.6",
"@types/spark-md5": "^3.0.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lodash": "^4.17.21",
"prettier": "^2.7.1",
"terser-webpack-plugin": "^5.3.3",
"testdouble": "^3.20.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.7.2",
"webpack": "^5.73.0",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"buffer": "npm:@eppo/buffer@6.2.0",
"js-base64": "^3.7.7",
"pino": "^9.5.0",
"semver": "^7.5.4",
"spark-md5": "^3.0.2",
"uuid": "^11.0.5"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}