-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.55 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
{
"name": "sat-wait",
"version": "0.1.4",
"description": "Universal waiting library",
"scripts": {
"test": "mocha ./specs/**/*.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/cjs/index.js",
"import": "./built/esm/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Simple-Automation-Testing/sat-wait.git"
},
"keywords": [
"waiting",
"wait for"
],
"author": "Potapov Dmitriy",
"license": "MIT",
"bugs": {
"url": "https://github.com/Simple-Automation-Testing/sat-wait/issues"
},
"homepage": "https://github.com/Simple-Automation-Testing/sat-wait#readme",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^22.9.3",
"@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.2",
"tslint": "^6.1.3",
"typescript": "^5.7.2"
},
"dependencies": {
"sat-utils": "^3.0.2"
}
}