-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.84 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
{
"name": "sat-utils",
"version": "3.0.1",
"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": "eslint --ext .ts ./",
"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/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": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"assertior": "^0.0.28",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsdoc": "^44.2.7",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^47.0.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.0.4"
}
}