You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
883 B
38 lines
883 B
3 years ago
|
{
|
||
|
"name": "atomic-sleep",
|
||
|
"version": "1.0.0",
|
||
|
"description": "Zero CPU overhead, zero dependency, true event-loop blocking sleep",
|
||
|
"main": "index.js",
|
||
|
"scripts": {
|
||
|
"test": "tap -R classic- -j1 test",
|
||
|
"lint": "standard",
|
||
|
"ci": "npm run lint && npm test"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"sleep",
|
||
|
"pause",
|
||
|
"wait",
|
||
|
"performance",
|
||
|
"atomics"
|
||
|
],
|
||
|
"engines": {
|
||
|
"node": ">=8.0.0"
|
||
|
},
|
||
|
"author": "David Mark Clements (@davidmarkclem)",
|
||
|
"license": "MIT",
|
||
|
"devDependencies": {
|
||
|
"standard": "^14.3.1",
|
||
|
"tap": "^14.10.6",
|
||
|
"tape": "^4.13.2"
|
||
|
},
|
||
|
"dependencies": {},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/davidmarkclements/atomic-sleep.git"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/davidmarkclements/atomic-sleep/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/davidmarkclements/atomic-sleep#readme"
|
||
|
}
|