@hcikit/workflow
Version:
A workflow manager for running experiments.
55 lines • 1.56 kB
JSON
{
"name": "@hcikit/workflow",
"version": "1.0.0-alpha.9",
"description": "A workflow manager for running experiments.",
"author": "blainelewis1",
"license": "MIT",
"repository": "hcikit/hcikit",
"module": "dist/index.js",
"main": "dist/index.js",
"type": "module",
"keywords": [
"hci",
"experiment"
],
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"start": "tsc",
"build": "yarn run generate-schema && tsc --build --verbose",
"test": "NODE_OPTIONS=--experimental-vm-modules yarn jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules yarn jest --watch --colors --verbose",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules yarn jest --coverage --colors",
"prepack": "yarn run build",
"generate-schema": "ts-json-schema-generator --tsconfig tsconfig.json -p src/types.ts -t ConfigurationNoGenerics > src/schemas.json"
},
"dependencies": {
"core-js": "^3.26.1",
"lodash-es": "^4.17.21",
"regenerator-runtime": "^0.13.11"
},
"devDependencies": {
"@types/deep-freeze": "^0.1.2",
"@types/jest": "^29.2.3",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.11.9",
"deep-freeze": "^0.0.1",
"ts-json-schema-generator": "^1.1.2",
"typescript": "^4.9.3"
},
"gitHead": "8d0f2af41121f70996e8b5803d006832b147fd86"
}