| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "name": "retimer",
- "version": "4.0.0",
- "description": "Reschedulable Timer for your node needs",
- "main": "retimer.js",
- "types": "types.d.ts",
- "scripts": {
- "lint": "standard",
- "test": "npm run test:ci && npm run test:typescript",
- "test:ci": "tape test.js | tap-dot",
- "test:typescript": "tsd"
- },
- "pre-commit": [
- "lint",
- "test"
- ],
- "repository": {
- "type": "git",
- "url": "git+https://github.com/mcollina/retimer.git"
- },
- "keywords": [
- "schedulable",
- "reschedulable",
- "timer",
- "setTimeout"
- ],
- "author": "Matteo Collina <hello@matteocollina.com>",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/mcollina/retimer/issues"
- },
- "homepage": "https://github.com/mcollina/retimer#readme",
- "devDependencies": {
- "fastbench": "^1.0.1",
- "pre-commit": "^1.2.2",
- "standard": "^17.1.0",
- "tap-dot": "^2.0.0",
- "tape": "^5.6.6",
- "tsd": "^0.28.1"
- },
- "browser": {
- "./time.js": "./time-browser.js",
- "./timers.js": "./timers-browser.js"
- },
- "dependencies": {
- "worker-timers": "^7.0.75"
- }
- }
|