transgate
Version:
Agent-based task flow framework
62 lines (61 loc) • 1.33 kB
JSON
{
"name": "transgate",
"version": "0.6.3",
"description": "Agent-based task flow framework",
"main": "dist/index.js",
"files": [
"dist"
],
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^13.1.6",
"coveralls": "^3.0.9",
"jsdoc": "^3.6.3",
"minami": "^1.2.3",
"mocha": "^7.0.0",
"mocha-lcov-reporter": "^1.3.0",
"mock-stdin": "^1.0.0",
"nyc": "^15.0.0",
"std-mocks": "^1.0.1",
"supertest": "^4.0.2",
"typescript": "^3.7.4"
},
"scripts": {
"build": "tsc",
"test": "mocha test/**/*.test.js",
"ci_test": "nyc mocha 'test/**/*.test.js'",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tilfin/transgate.git"
},
"keywords": [
"taskflow",
"framework"
],
"author": "Toshimitsu Takahashi",
"license": "MIT",
"bugs": {
"url": "https://github.com/tilfin/transgate/issues"
},
"homepage": "https://github.com/tilfin/transgate#readme",
"engines": {
"node": ">=10"
},
"nyc": {
"include": [
"dist/**/*.js"
],
"reporter": [
"json",
"html",
"text"
]
}
}