summaryrefslogtreecommitdiffstats
path: root/debian/tests/test_modules/atomic-sleep/package.json
blob: cfdf200fed04bc890b1bb8db1417d51d463d0067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
  "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"
}