pandora-hub
Version:
pandora.js messenge hub
70 lines (69 loc) • 1.56 kB
JSON
{
"name": "pandora-hub",
"version": "2.1.2",
"description": "pandora.js messenge hub",
"main": "dist/index",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run lint && rm -rf ./dist && ../../node_modules/.bin/tsc",
"start": "npm run build && node dist/index",
"lint": "../../node_modules/.bin/tslint --format prose -c ../../tslint.json src/**/*.ts test/**/*.ts",
"test": "npm run lint && mocha",
"cov": "nyc mocha",
"ci": "npm run test",
"gen-api-ref": "../../node_modules/.bin/typedoc --mode file --hideGenerator --excludeExternals --ignoreCompilerErrors --out ../../docs/.vuepress/dist/api-reference/hub src/"
},
"keywords": [
"pandora",
"messenge",
"IPC",
"HUB"
],
"license": "MIT",
"dependencies": {
"pandora-messenger": "^2.1.2",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/lodash": "^4.14.99",
"@types/mocha": "^2.2.41",
"@types/node": "^8.5.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mm": "^2.2.0",
"mocha": "^3.5.0",
"nyc": "^13.1.0"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"src/index.ts",
"typings",
"**/*.d.ts",
"dist"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"json",
"html",
"lcovonly"
],
"all": true
},
"files": [
"dist",
"src",
"d.ts"
]
}