-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.13 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
{
"name": "qa-testing-conferences",
"version": "1.0.0",
"description": "Curated list of software testing conferences worldwide sorted by country",
"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/qa-testing-conferences"
},
"keywords": [
"testing conferences",
"QA conferences",
"testing conferences list",
"QA conferences list",
"QA testing conferences",
"QA testing conferences list"
],
"author": "Dmytro Shpakovskyi",
"license": "MIT",
"devDependencies": {
"eslint": "^8.57.1",
"img-link-checker": "^1.2.0"
}
}