{ "name": "elxr", "version": "0.0.1", "description": "Regular expression-like syntax generalized for list operations", "main": "lib/index.js", "types": "lib/index.d.ts", "repository": "https://github.com/phenax/elxr.git", "author": "Akshay Nair ", "license": "MIT", "keywords": [ "regex", "regular", "expressions", "list", "typescript" ], "scripts": { "tsc": "tsc --emitDeclarationOnly --outDir lib", "test": "jest", "format": "prettier --write ./src/**/*.ts ./tests/**/*.ts", "build": "rimraf lib && node ./esbuild.js && npm run tsc" }, "devDependencies": { "@types/jest": "^27.4.0", "esbuild": "^0.14.10", "jest": "^27.4.7", "prettier": "^2.5.1", "rimraf": "^3.0.2", "ts-jest": "^27.1.2", "typescript": "^4.5.4" }, "dependencies": { "fp-ts": "^2.11.6" } }