-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.63 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.63 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "unleash-client",
"version": "6.11.0",
"description": "Unleash Client for Node",
"license": "Apache-2.0",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"version": "./scripts/update-build-details.sh $npm_package_version",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"pre-commit": "lint-staged",
"prebuild": "del-cli --force lib",
"build": "tsc -p .",
"prepare": "husky && yarn run build",
"test": "vitest run",
"coverage": "vitest run --coverage",
"bench:isEnabled": "node ./bench/is-enabled.bench.js"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:Unleash/unleash-node-sdk.git"
},
"keywords": [
"unleash",
"client",
"feature toggle"
],
"bugs": {
"url": "https://github.com/Unleash/unleash-node-sdk/issues"
},
"homepage": "https://github.com/Unleash/unleash-node-sdk",
"dependencies": {
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.5",
"ip-address": "^9.0.5",
"launchdarkly-eventsource": "2.2.0",
"lru-cache": "^11.2.5",
"make-fetch-happen": "^15.0.3",
"murmurhash3js": "^3.0.1",
"proxy-from-env": "^1.1.0",
"re2js": "^1.2.2",
"semver": "^7.7.3"
},
"engines": {
"node": ">=20"
},
"files": [
"lib",
"!lib/test",
"examples"
],
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@tsconfig/node20": "^20.1.0",
"@types/express": "^4.17.25",
"@types/jsbn": "^1.2.33",
"@types/make-fetch-happen": "^10.0.4",
"@types/murmurhash3js": "^3.0.7",
"@types/nock": "^11.1.0",
"@types/node": "^20.17.17",
"@types/proxy-from-env": "^1.0.4",
"@types/semver": "^7.5.0",
"@unleash/client-specification": "6.1.0",
"@vitest/coverage-v8": "4.0.14",
"@vitest/ui": "4.0.14",
"del-cli": "^7.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"mkdirp": "^3.0.1",
"nock": "^14.0.10",
"redis": "^4.6.7",
"sinon": "^21.0.0",
"tinybench": "^2.9.0",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"debug": "^4.0.0",
"braces": "^3.0.3",
"ip-address": "^9.0.5",
"json-schema": "^0.4.0",
"json5": "^2.0.0",
"qs": "^6.5.3",
"minimatch": "^9.0.0",
"semver": "^7.5.3"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,md}": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"type": "commonjs"
}