File: //usr/share/opensearch-dashboards/node_modules/ts-debounce/package.json
{
"name": "ts-debounce",
"version": "3.0.0",
"description": "TypeScript implementation of debounce",
"main": "dist/src/index.js",
"module": "dist/src/index.esm.js",
"typings": "dist/src/index.d.ts",
"author": {
"name": "Jakub Chodorowicz",
"url": "https://github.com/chodorowicz"
},
"keywords": [
"TypeScript",
"ts",
"TS",
"std lib",
"function",
"debounce",
"wait"
],
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/chodorowicz/ts-debounce"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.15",
"all-contributors-cli": "^6.19.0",
"jest": "^26.6.3",
"microbundle": "^0.12.4",
"np": "^7.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"prepublishOnly": "npm run build",
"test": "npm run test:code && npm run test:types",
"test:code": "jest",
"test:types": "tsc --noEmit",
"release": "np --no-yarn"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(src/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"js",
"ts"
],
"timers": "fake"
}
}