@opentap/runner-client
Version:
This is the web client for the OpenTAP Runner.
59 lines (58 loc) • 1.57 kB
JSON
{
"name": "@opentap/runner-client",
"version": "2.32.0",
"description": "This is the web client for the OpenTAP Runner.",
"main": "./dist/cjs/index.js",
"module": "./dist/mjs/index.js",
"types": "./dist/mjs/index.d.ts",
"exports": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts"
},
"scripts": {
"build": "rimraf ./dist && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && bash ./post-build.sh",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"format": "prettier --write \"src/**/*.+(js|ts|json)\"",
"prepare": "npm run build && husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "OpenTap.io",
"license": "MIT",
"files": [
"dist/**/*"
],
"keywords": [
"opentap",
"runner",
"typescript"
],
"repository": {
"type": "git",
"url": "git://github.com/opentap/runner-client-web.git"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.8.2"
},
"dependencies": {
"nats.ws": "~1.29.0",
"uuid": "^9.0.0",
"events": "^3.3.0"
},
"lint-staged": {
"*.{ts,js,html}": [
"npm run lint --fix"
]
}
}