-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.19 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "busywait",
"version": "5.0.0",
"description": "Async busy wait",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf node_modules build coverage dist",
"build": "npm run lint && npm run buildDist",
"buildDist": "rm -rf dist/* && ./node_modules/.bin/tsc",
"test": "npm run lint && npm run mocha",
"mocha": "node --preserve-symlinks -r ts-node/register -r source-map-support/register node_modules/mocha/bin/_mocha --require src/test/setup.ts --recursive --reporter spec --exit 'src/test/**/*.ts'",
"cover": "rm -rf coverage && nyc --reporter=lcov --reporter=text-summary npm run test",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git://github.com/regevbr/busywait.js.git"
},
"keywords": [
"node",
"nodejs",
"promise",
"promises",
"npm",
"npm-package",
"npm-module",
"javascript-library",
"loop",
"await",
"javascript",
"busy",
"wait",
"busywait",
"busy-wait",
"exponential",
"backoff",
"backoff-strategy"
],
"engines": {
"node": "^18 || ^20 || ^22 || ^24"
},
"files": [
"/dist/*.d.ts",
"/dist/*.js"
],
"license": "ISC",
"author": "Regev Brody <regevbr@gmail.com>",
"bugs": {
"url": "https://github.com/regevbr/busywait.js/issues"
},
"homepage": "https://github.com/regevbr/busywait.js#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@stylistic/eslint-plugin": "~5.6.1",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^8.0.2",
"@types/dirty-chai": "^2.0.5",
"@types/mocha": "^10.0.10",
"@types/node": "^24.0.1",
"@types/sinon": "^21.0.0",
"@types/sinon-chai": "^4.0.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"dirty-chai": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"eslint": "^9.39.2",
"jiti": "^2.6.1",
"mocha": "^11.7.5",
"mocha-param": "^2.0.1",
"nyc": "^17.1.0",
"sinon": "^21.0.1",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}