UNPKG

chain-simple

Version:

Main purpose of this package is - provide simple way to build chain between any item methods

69 lines (67 loc) 1.98 kB
{ "name": "chain-simple", "version": "2.0.0", "description": "Main purpose of this package is - provide simple way to build chain between any item methods", "main": "./built/cjs/index.js", "exports": { ".": { "require": "./built/cjs/index.js", "import": "./built/esm/index.js" } }, "directories": { "example": "examples", "lib": "lib" }, "scripts": { "test": "LOG_LEVEL=VERBOSE mocha ./specs/**/*.spec.ts --require ts-node/register --timeout 30000", "test:verbose": "LOG_LEVEL=VERBOSE mocha ./specs/**/*.spec.ts --require ts-node/register --timeout 30000", "test:watch": "mocha ./specs/**/*.spec.ts --require ts-node/register --timeout 30000 --watch", "lint": "eslint --ext .ts ./", "tsc:cjs": "tsc -p tsconfig.json", "tsc:esm": "tsc -p tsconfig.esm.json", "tsc": "rm -rf ./built && npm run tsc:cjs && npm run tsc:esm", "prepublish": "npm run tsc" }, "keywords": [ "proxy object", "proxify", "flexible extension", "extension", "proxy method", "chaining", "chain", "chain methods", "wrap in chain" ], "repository": { "type": "git", "url": "git+https://github.com/Simple-Automation-Testing/chain-simple.git" }, "author": "", "license": "ISC", "bugs": { "url": "https://github.com/Simple-Automation-Testing/chain-simple/issues" }, "homepage": "https://github.com/Simple-Automation-Testing/chain-simple#readme", "devDependencies": { "@types/mocha": "^8.2.0", "@typescript-eslint/eslint-plugin": "^4.11.1", "@typescript-eslint/parser": "^4.11.1", "assertior": "0.0.23", "eslint": "^7.16.0", "eslint-plugin-chai-expect": "^2.2.0", "eslint-plugin-chai-friendly": "^0.6.0", "eslint-plugin-mocha": "^8.0.0", "mocha": "^8.2.1", "prettier": "^2.6.2", "ts-node": "^10.9.2", "typescript": "^5.8.3" }, "engines": { "node": ">=20.9.0" }, "dependencies": { "sat-utils": "1.9.0" } }