multi-tab-detection
Version:
Used to detect multiple tabs being opened
42 lines (41 loc) • 1.08 kB
JSON
{
"name": "multi-tab-detection",
"version": "1.1.5",
"description": "Used to detect multiple tabs being opened",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"keywords": [
"multi-tab",
"web",
"detection"
],
"license": "MIT",
"author": "Andrew Uy",
"dependencies": {
"rxjs": "^7.8.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.9.3"
}
}