UNPKG

brn

Version:

simple functional branching logic

44 lines (43 loc) 1.01 kB
{ "name": "brn", "version": "1.1.3", "description": "simple functional branching logic", "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "lib/index.js", "lib/index.d.ts" ], "scripts": { "test": "jest", "build": "tsc", "format": "prettier --write \"src/**/*.ts\"", "prepare": "npm run build", "prepublishOnly": "npm test", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "keywords": [ "functional", "branching", "condition", "if-else" ], "author": "Tung Vu <me@tungv.com>", "license": "MIT", "devDependencies": { "@babel/core": "^7.14.6", "@babel/preset-env": "^7.14.7", "@babel/preset-typescript": "^7.14.5", "@types/jest": "^26.0.23", "babel-jest": "^27.0.5", "jest": "^27.0.5", "prettier": "^2.3.2", "ts-node": "^10.0.0", "typescript": "^4.3.4" }, "repository": { "type": "git", "url": "https://github.com/tungv/brn" } }