@native-typescript/waiting 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/package.json +55 -0
- package/source/index.ts +1 -0
- package/source/waiting/index.ts +1 -0
- package/source/waiting/wait.ts +7 -0
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"author": {
|
|
3
|
+
"email": "goodheropl@gmail.com",
|
|
4
|
+
"name": "Rafał Majewski",
|
|
5
|
+
"url": "https://github.com/rafal-majewski"
|
|
6
|
+
},
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://github.com/native-typescript/waiting/issues"
|
|
9
|
+
},
|
|
10
|
+
"description": "A library for waiting.",
|
|
11
|
+
"devDependencies": {
|
|
12
|
+
"@commitlint/cli": "20.5.0",
|
|
13
|
+
"@commitlint/types": "20.5.0",
|
|
14
|
+
"@native-typescript/loader-of-typescript-for-node-js": "1.0.0",
|
|
15
|
+
"@release-it/conventional-changelog": "10.0.6",
|
|
16
|
+
"@stylistic/eslint-plugin": "5.10.0",
|
|
17
|
+
"@types/node": "25.5.0",
|
|
18
|
+
"@typescript-eslint/parser": "8.57.2",
|
|
19
|
+
"eslint": "10.2.0",
|
|
20
|
+
"eslint-plugin-import-x": "4.16.2",
|
|
21
|
+
"eslint-plugin-perfectionist": "5.8.0",
|
|
22
|
+
"eslint-plugin-unused-imports": "4.4.1",
|
|
23
|
+
"expect": "30.3.0",
|
|
24
|
+
"jiti": "2.6.1",
|
|
25
|
+
"prettier": "3.8.1",
|
|
26
|
+
"release-it": "19.2.4",
|
|
27
|
+
"typescript": "5.9.3",
|
|
28
|
+
"typescript-eslint": "8.57.2"
|
|
29
|
+
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=24.14.0",
|
|
32
|
+
"npm": ">=11.9.0"
|
|
33
|
+
},
|
|
34
|
+
"exports": "./source/index.ts",
|
|
35
|
+
"homepage": "https://github.com/native-typescript/waiting#readme",
|
|
36
|
+
"name": "@native-typescript/waiting",
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "git+https://github.com/native-typescript/waiting.git"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"commitlint:check:last": "node --env-file-if-exists='./.env' ./node_modules/.bin/commitlint --last --strict",
|
|
43
|
+
"commitlint:check:range": "node --env-file-if-exists='./.env' ./node_modules/.bin/commitlint --strict",
|
|
44
|
+
"eslint:check": "node --env-file-if-exists='./.env' ./node_modules/.bin/eslint --max-warnings=0 .",
|
|
45
|
+
"eslint:fix": "node --env-file-if-exists='./.env' ./node_modules/.bin/eslint --fix --max-warnings=0 .",
|
|
46
|
+
"prettier:check": "node --env-file-if-exists='./.env' ./node_modules/.bin/prettier --check .",
|
|
47
|
+
"prettier:fix": "node --env-file-if-exists='./.env' ./node_modules/.bin/prettier --write .",
|
|
48
|
+
"release-it": "node --env-file-if-exists='./.env' ./node_modules/.bin/release-it --config='./release-it.config.ts'",
|
|
49
|
+
"test:check": "node --env-file-if-exists='./.env' --experimental-test-coverage --test --test-concurrency=1 --test-coverage-exclude='**/*.test.*' --test-coverage-exclude='node_modules/**/*' --test-coverage-exclude='testing/**/*' --test-coverage-include='source/**/*' --test-global-setup='./testing/entrypoint-of-testing.ts' '**/*.test.ts'",
|
|
50
|
+
"test:check:unit": "node --env-file-if-exists='./.env' --test --test-global-setup='./testing/entrypoint-of-testing.ts' '**/*.unit.test.ts'",
|
|
51
|
+
"typescript:check": "node --env-file-if-exists='./.env' ./node_modules/.bin/tsc"
|
|
52
|
+
},
|
|
53
|
+
"type": "module",
|
|
54
|
+
"version": "1.0.0"
|
|
55
|
+
}
|
package/source/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./waiting/index.ts";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {wait} from "./wait.ts";
|