UNPKG

flagsmith-nodejs

Version:

Flagsmith lets you manage features flags and remote config across web, mobile and server side applications. Deliver true Continuous Integration. Get builds out faster. Control who has access to new features.

80 lines (79 loc) 2.24 kB
{ "name": "flagsmith-nodejs", "version": "6.1.0", "description": "Flagsmith lets you manage features flags and remote config across web, mobile and server side applications. Deliver true Continuous Integration. Get builds out faster. Control who has access to new features.", "main": "./build/cjs/index.js", "type": "module", "engines": { "node": ">=18" }, "exports": { "import": "./build/esm/index.js", "require": "./build/cjs/index.js" }, "repository": { "type": "git", "url": "https://github.com/Flagsmith/flagsmith-nodejs-client" }, "keywords": [ "nodejs", "flagsmith", "feature flags", "feature toggles", "remote configuration", "continuous deployment" ], "bugs": { "url": "https://github.com/Flagsmith/flagsmith-nodejs-client/issues" }, "homepage": "http://flagsmith.com/", "author": "Flagsmith", "contributors": [ { "name": "Tom Stuart", "email": "tom@solidstategroup.com" }, { "name": "Kyle Johnson", "email": "kyle.johnson@flagsmith.com", "url": "https://www.npmjs.com/~kyle-ssg" }, { "name": "Luke Fanning", "email": "luke@solidstategroup.com" }, { "name": "Matt Elwell", "email": "matthew.elwell@solidstategroup.com" } ], "license": "MIT", "scripts": { "lint": "prettier --write .", "test": "vitest --coverage --run", "test:watch": "vitest", "test:debug": "vitest --inspect-brk --no-file-parallelism --coverage", "prebuild": "rm -rf ./build", "build": "tsc -b tsconfig.cjs.json tsconfig.esm.json && echo '{\"type\": \"commonjs\"}'> build/cjs/package.json", "deploy": "npm i && npm run build && npm publish", "deploy:beta": "npm i && npm run build && npm publish --tag beta", "prepare": "husky install" }, "dependencies": { "pino": "^8.8.0", "semver": "^7.3.7", "undici-types": "^6.19.8" }, "devDependencies": { "@types/node": "^20.16.10", "@types/semver": "^7.3.9", "@types/uuid": "^8.3.4", "@vitest/coverage-v8": "^2.1.2", "esbuild": "^0.25.0", "husky": "^7.0.4", "prettier": "^2.2.1", "typescript": "^4.9.5", "undici": "^6.19.8", "vitest": "^2.1.2" } }