-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.67 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": "js-automation-tools",
"version": "3.1.3",
"description": "A collection of scripts for JavaScript test automation",
"main": "index.js",
"engines": {
"node": ">=8.x.x"
},
"scripts": {
"lint": "node ./node_modules/.bin/eslint *.js **/*.js",
"test": "echo \"Test file\" >> tests/test_text.txt && node ./tests/test1.js && rm -rf tests/test_text.txt",
"patch": "npm version patch -m \"Bumped up package version to %s\" && git push && git push origin --tags && npm publish",
"minor": "npm version minor -m \"Bumped up package version to %s\" && git push && git push origin --tags && npm publish",
"major": "npm version major -m \"Bumped up package version to %s\" && git push && git push origin --tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/Marketionist/js-automation-tools"
},
"keywords": [
"test-automation-tools",
"test automation tools",
"generate-random-digits",
"generate random digits",
"generate-date",
"generate date",
"generate-time",
"generate time",
"generate-timestamp",
"generate timestamp",
"send-requests",
"send requests",
"retry-function",
"retry function",
"read-directories",
"read directories",
"js-automation-tools",
"js automation tools",
"javascript-automation-tools",
"javascript automation tools",
"e2e-test-helpers",
"e2e test helpers",
"api-test-helpers",
"api test helpers",
"automation-helpers",
"automation helpers",
"automation-tools",
"automation tools"
],
"author": "Dmytro Shpakovskyi",
"license": "MIT",
"devDependencies": {
"eslint": "^8.57.1"
}
}