-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.43 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
{
"name": "wait-for-true",
"version": "1.0.2",
"description": "⌛ Wait for a condition to be true with configurable timeout and cancellation support.",
"url": "https://github.com/aldipermanaetikaputra/wait-for-true",
"keywords": [
"wait",
"for",
"until",
"condition",
"delay",
"sleep",
"check",
"async",
"wait-for",
"wait-until"
],
"author": "Aldi Permana Etika Putra <aldipermanaetikaputra@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aldipermanaetikaputra/wait-for-true/issues"
},
"files": [
"lib"
],
"main": "lib/waitForTrue.js",
"types": "lib/waitForTrue.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "jest",
"lint": "eslint . --ext .ts",
"version": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/aldipermanaetikaputra/wait-for-true.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/minimist": "^1.2.2",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"tmp": "^0.2.1",
"ts-jest": "^29.0.5",
"typescript": "4.9.5"
}
}