forked from Eppo-exp/js-sdk-common
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.15 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.15 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
68
69
70
71
{
"name": "@eppo/js-client-sdk-common",
"version": "4.15.4",
"description": "Common library for Eppo JavaScript SDKs (web, react native, and node)",
"type": "module",
"main": "dist/index.js",
"files": [
"/dist",
"/src",
"!*.spec.ts"
],
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18.x"
},
"scripts": {
"build": "vite build",
"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": "pnpm test:unit",
"test:unit": "NODE_ENV=test NODE_OPTIONS='--experimental-vm-modules' jest '.*\\.spec\\.ts'",
"obfuscate-mock-ufc": "tsx test/writeObfuscatedMockUFC",
"bootstrap-config": "tsx src/tools/get-bootstrap-config"
},
"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/lodash": "^4.17.5",
"@types/node": "^20.0.0",
"@types/semver": "^7.5.6",
"@types/spark-md5": "^3.0.5",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^4.3.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint": "^8.17.0",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"prettier-eslint": "^16.3.0",
"prettier": "^3.4.2",
"testdouble": "^3.20.1",
"ts-jest": "^29.1.1",
"tsx": "^4.7.0",
"typescript": "^5.7.2",
"vite": "^5.4.0",
"vite-plugin-dts": "^4.0.0",
"yargs": "^17.7.2"
},
"dependencies": {
"semver": "^7.5.4",
"spark-md5": "^3.0.2"
}
}