forked from flipt-io/flipt-client-sdks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 855 Bytes
/
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
{
"name": "@flipt-io/flipt-client",
"version": "0.11.0",
"description": "Flipt Client Evaluation SDK for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Flipt Devs <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/flipt-io/flipt-client-sdks/tree/main/flipt-client-node"
},
"keywords": [
"flipt",
"feature flags",
"feature toggles",
"nodejs",
"wasm"
],
"scripts": {
"fmt": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "prettier --check src/**/*.ts",
"test": "jest",
"build": "tsc"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/node": "^22.7.5",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1"
}
}