-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.23 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
{
"name": "testing-starter-kit",
"version": "1.0.0",
"description": "A collection of free open source software testing tools with some links on how to use them",
"main": "README.md",
"engines": {
"node": ">=8.x.x"
},
"scripts": {
"lint": "node ./node_modules/.bin/eslint tests/**/*.js",
"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",
"test": "node ./tests/links.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Marketionist/testing-starter-kit"
},
"keywords": [
"testing tools",
"QA tools",
"free testing tools",
"free QA tools",
"testing tools list",
"QA tools list",
"free testing tools list",
"free QA tools list",
"open source testing tools list",
"open source QA tools list"
],
"author": "Dmytro Shpakovskyi",
"license": "MIT",
"devDependencies": {
"eslint": "^8.57.0",
"img-link-checker": "^1.2.0"
}
}