UNPKG

@skypilot/pipeline

Version:

Easily assemble, run & control functional pipelines

58 lines (57 loc) 1.86 kB
{ "name": "@skypilot/pipeline", "version": "0.2.0-alpha.11", "private": false, "description": "Easily assemble, run & control functional pipelines", "keywords": [ "function", "steps", "stages", "pipeline", "processing" ], "homepage": "https://github.com/skypilot-dev/pipeline#readme", "bugs": { "url": "https://github.com/skypilot-dev/pipeline/issues" }, "repository": { "type": "git", "url": "git+https://github.com/skypilot-dev/pipeline.git" }, "license": "ISC", "author": "William Thorsen <william@thorsen.dev>", "main": "lib/index.js", "scripts": { "all-ci-checks": "yarn run all-cq-checks && yarn run build", "all-cq-checks": "yarn run typecheck && yarn run lint --quiet && yarn test", "build": "rm -rf lib && yarn run compile-ts", "ci": "yarn run all-ci-checks", "compile-ts": "babel ./src --out-dir ./lib --extensions .ts --ignore '**/__tests__/*' --ignore '**/*.d.ts' && yarn run generate-typings", "cq": "yarn run all-cq-checks", "generate-typings": "tsc --project tsconfig.generate-typings.json", "lint": "eslint --cache '**/*.{js,ts}'", "prepublishOnly": "yarn run typecheck && yarn run lint --quiet && yarn test && yarn run build", "publish:default": "yarn publish --non-interactive", "tc": "yarn run typecheck", "test": "jest --config jest.standalone.config.js", "test:all": "jest --config jest.config.js", "test:int": "jest --config jest.integration.config.js", "typecheck": "tsc" }, "devDependencies": { "@skypilot/common-types": "^2.2.1", "@skypilot/toolchain": "^5.2.2", "type-fest": "^1.0.0" }, "publishConfig": { "access": "restricted" }, "files": [ "/lib" ], "types": "lib/index.d.ts", "dependencies": { "@skypilot/sugarbowl": "^3.2.0", "serialize-error": "^8.0.1" } }