UNPKG

jsms-ext-chromium

Version:

JSMS extension for integration of Chromium Embedded Framework (CEF) clients.

77 lines (76 loc) 2.47 kB
{ "name": "jsms-ext-chromium", "version": "2.0.2", "description": "JSMS extension for integration of Chromium Embedded Framework (CEF) clients.", "scripts": { "test": "jest --collect-coverage", "build": "npm run clean && npm run compile && npm run lint && npm run test && npm run prepare-dist", "build-without-checks": "npm run clean && npm run compile && npm run prepare-dist", "clean": "rimraf ./dist/**/*", "compile": "tsc", "doc": "rimraf ./doc && typedoc --exclude \"+(node_modules|test|index.d.ts)\" --excludeNotExported --excludePrivate --excludeProtected --module commonjs --target ES6 --out ./doc .", "prepare-dist": "npm run rollup && rimraf ./dist/test && rimraf ./dist/src/**/*.js && move-cli ./dist/src/ ./dist/types/ && cp-cli index.d.ts ./dist/index.d.ts ", "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint": "tslint -p tsconfig.json", "prepublishOnly": "npm run build", "preversion": "npm run lint", "postversion": "git push && git push --tags", "rollup": "rollup -c", "tsc": "tsc", "tslint": "tslint", "jest": "jest" }, "repository": { "type": "git", "url": "git+https://github.com/rfruesmer/jsms-ext-chromium.git" }, "keywords": [ "event bus", "mediator", "messaging", "message service", "message queue", "publish", "subscribe", "chromium", "chromium embedded framework", "cef", "cef message router" ], "author": "Reinhold Früsmer", "license": "MIT", "bugs": { "url": "https://github.com/rfruesmer/jsms-ext-chromium/issues" }, "homepage": "https://github.com/rfruesmer/jsms-ext-chromium#readme", "devDependencies": { "@types/jest": "^27.0.2", "cp-cli": "^2.0.0", "jest": "^27.3.1", "jsms": "^1.0.16", "log4js": "^6.3.0", "move-cli": "^2.0.0", "prettier": "^2.4.1", "rimraf": "^3.0.2", "rollup": "^2.59.0", "ts-jest": "^27.0.7", "tslint": "^6.1.2", "tslint-config-prettier": "^1.18.0", "tslint-plugin-prettier": "^2.3.0", "typescript": "^4.4.4" }, "peerDependencies": { "jsms": ">=1.0.16" }, "dependencies": { "@log4js-node/log4js-api": "^1.0.2", "uuid": "^8.3.2" }, "files": [ "dist/**/*" ], "types": "dist/index.d.ts", "main": "dist/index.cjs.js", "module": "dist/index.esm.js", "browser": "dist/index.umd.js" }