UNPKG

flexflag

Version:

FlexFlag is a powerful and lightweight feature flag engine

56 lines (55 loc) 1.49 kB
{ "name": "flexflag", "version": "0.1.0", "description": "FlexFlag is a powerful and lightweight feature flag engine", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "clean": "rm -rf dist", "build": "npm run clean && npx tsc -p tsconfig.json", "esbuild": "npm run clean && tsc && esbuild src/index.ts --bundle --format=esm --outfile=dist/index.mjs", "test": "jest", "cov": "jest --coverage", "lint": "eslint src", "example": "ts-node example/index.ts" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/loghmanb/flexflag.git" }, "keywords": [ "Flexible", "Feature", "Flag", "Lightweight" ], "author": { "name": "Loghman Barari", "email": "loghmanb@gmail.com", "url": "https://www.linkedin.com/in/loghman-barari-13095724/" }, "license": "Apache-2.0", "bugs": { "url": "https://github.com/loghmanb/flexflag/issues" }, "homepage": "https://github.com/loghmanb/flexflag#readme", "devDependencies": { "@eslint/js": "^9.17.0", "@jest/globals": "^29.7.0", "@types/jest": "^29.5.12", "@typescript-eslint/eslint-plugin": "^8.31.1", "@typescript-eslint/parser": "^8.31.1", "esbuild": "^0.25.3", "eslint": "^9.22.0", "jest": "^29.7.0", "ts-jest": "^29.1.2", "ts-node": "^10.9.2", "typescript": "^5.8.3" }, "exports": { ".": { "require": "./dist/index.js", "import": "./dist/index.mjs" } } }