-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.92 KB
/
package.json
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
{
"name": "busywait",
"version": "4.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 source-map-support/register node_modules/mocha/bin/_mocha --opts src/test/mocha.opts",
"cover": "rm -rf coverage && nyc --reporter=lcov --reporter=text-summary npm run test",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'src/test/**/*.ts'"
},
"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": "^14 || ^16 || ^18"
},
"files": [
"/dist/*.d.ts",
"/dist/*.js"
],
"license": "ISC",
"author": "Regev Brody <[email protected]>",
"bugs": {
"url": "https://github.com/regevbr/busywait.js/issues"
},
"homepage": "https://github.com/regevbr/busywait.js#readme",
"dependencies": {},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.15",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"dirty-chai": "^2.0.1",
"mocha": "^6.2.3",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"mocha-param": "^2.0.1",
"sinon": "^15.0.0",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.9.4"
}
}