-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.48 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
{
"name": "sat-utils",
"version": "3.2.0",
"description": "Utils library",
"scripts": {
"test": "mocha ./specs/**/*.spec.ts --require ts-node/register --timeout 30000",
"test:w": "mocha ./specs/**/*.spec.ts --require ts-node/register --timeout 30000 --watch",
"test:debug": "mocha ./specs/async.child.methods.spec.ts --require ts-node/register --timeout 30000",
"lint": "oxlint -c oxlintrc.json --tsconfig tsconfig.json .",
"tsc:cjs": "tsc -p tsconfig.json",
"tsc:esm": "tsc -p tsconfig.esm.json",
"tsc": "rm -rf ./built && npm run tsc:cjs && npm run tsc:esm"
},
"main": "./built/cjs/index.js",
"exports": {
".": {
"require": "./built/cjs/index.js",
"import": "./built/esm/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Simple-Automation-Testing/sat-utils.git"
},
"keywords": [
"asyncRepeat",
"asyncMap",
"asyncForEach",
"async",
"types checkers",
"getRandomArrayItem",
"getRandomString",
"waitForCondition",
"get random data"
],
"author": "Potapov Dmitriy",
"license": "MIT",
"bugs": {
"url": "https://github.com/Simple-Automation-Testing/sat-utils/issues"
},
"homepage": "https://github.com/Simple-Automation-Testing/sat-utils#readme",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^22.9.3",
"assertior": "^0.0.28",
"oxlint": "^1.43.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}