CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json38 linesDownload Raw Back to atomic-sleep
1{2  "name": "atomic-sleep",3  "version": "1.0.0",4  "description": "Zero CPU overhead, zero dependency, true event-loop blocking sleep",5  "main": "index.js",6  "scripts": {7    "test": "tap -R classic- -j1 test",8    "lint": "standard",9    "ci": "npm run lint && npm test"10  },11  "keywords": [12    "sleep",13    "pause",14    "wait",15    "performance",16    "atomics"17  ],18  "engines": {19    "node": ">=8.0.0"20  },21  "author": "David Mark Clements (@davidmarkclem)",22  "license": "MIT",23  "devDependencies": {24    "standard": "^14.3.1",25    "tap": "^14.10.6",26    "tape": "^4.13.2"27  },28  "dependencies": {},29  "repository": {30    "type": "git",31    "url": "git+https://github.com/davidmarkclements/atomic-sleep.git"32  },33  "bugs": {34    "url": "https://github.com/davidmarkclements/atomic-sleep/issues"35  },36  "homepage": "https://github.com/davidmarkclements/atomic-sleep#readme"37}38