12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "name": "safe-timers",
- "version": "1.1.0",
- "description": "Timers with near-infinite duration support",
- "main": "index.js",
- "files": [
- "index.js"
- ],
- "directories": {
- "test": "test"
- },
- "scripts": {
- "test": "tape test/*.js | tap-spec",
- "cov": "nyc npm test && nyc report --reporter=lcov"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/Wizcorp/safe-timers.git"
- },
- "keywords": [
- "setTimeout",
- "setInterval",
- "timer",
- "timeout",
- "interval",
- "timers",
- "timeouts",
- "intervals"
- ],
- "author": "Ron Korving <rkorving@wizcorp.jp>",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/Wizcorp/safe-timers/issues"
- },
- "homepage": "https://github.com/Wizcorp/safe-timers#readme",
- "devDependencies": {
- "codecov": "^3.0.0",
- "nyc": "^11.2.1",
- "pre-commit": "^1.2.2",
- "tap-spec": "^4.1.1",
- "tape": "^4.5.1"
- }
- }
|