UNPKG

@broid/kit

Version:

Bot framework supported all messaging plateforms and middlewares.

86 lines (85 loc) 2.21 kB
{ "name": "@broid/kit", "version": "1.1.0", "main": "lib/core/index.js", "license": "Apache-2.0", "licenses": [ { "type": "Apache-2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0" } ], "author": "Broid Team <opensource@broid.ai> (https://broid.ai)", "description": "Bot framework supported all messaging plateforms and middlewares.", "repository": { "type": "git", "url": "git@github.com:broidHQ/broid-kit.git" }, "bugs": { "url": "https://github.com/broidHQ/broid-kit/issues" }, "homepage": "https://github.com/broidHQ/broid-kit", "keywords": [ "kit", "broid", "activity", "activity streams 2", "messaging", "chat", "bot" ], "engines": { "node": ">=6.0.0" }, "types": "./lib/core/index.d.ts", "scripts": { "build": "npm run clean && npm run copy && tsc", "clean": "rm -rf lib", "copy": "copyfiles -u 1 src/**/*.json lib/", "lint": "tslint -c tslint.json src/**/*.ts", "lint:watch": "watch 'npm run lint' src", "nsp-check": "nsp check --warn-only -o summary", "test": "npm run lint && npm run build && nyc ava --verbose", "travis": "npm run nsp-check && npm run test", "tsc:watch": "npm run build && tsc --watch", "release": "npm run travis && npm run build && npm publish --access public", "watch": "concurrently --kill-others \"npm run lint:watch\" \"npm run tsc:watch\"" }, "devDependencies": { "@types/node": "^7.0.5", "@types/ramda": "0.0.3", "ava": "^0.18.1", "concurrently": "^3.1.0", "copyfiles": "^1.2.0", "nsp": "^2.6.3", "nyc": "^10.1.2", "sinon": "^1.17.7", "tslint": "^4.3.1", "tslint-eslint-rules": "^4.0.0", "tslint-microsoft-contrib": "^4.0.1", "typescript": "~2.2.2", "watch": "^1.0.1" }, "dependencies": { "@broid/schemas": "^1.0.0", "@broid/utils": "^1.1.0", "bluebird": "^3.5.0", "body-parser": "^1.17.1", "express": "^4.15.2", "ramda": "^0.23.0", "rxjs": "^5.2.0" }, "ava": { "files": [ "lib/test/**/*.js" ], "concurrency": 5, "failFast": true, "tap": true }, "nyc": { "exclude": [ "dist" ] } }