-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.28 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
{
"name": "tests2doc",
"version": "1.0.1",
"description": "Export your test cases from .js or .feature files to Google Docs Sheets",
"main": "index.js",
"engines": {
"node": ">=8.x.x"
},
"scripts": {
"lint": "node_modules/.bin/eslint *.js **/*.js",
"test": "node tests/test.reading.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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marketionist/tests2doc.git"
},
"keywords": [
"tests2doc",
"tests to doc",
"test documentation",
"link tests to Google Docs",
"export test cases to Google Docs",
"export tests to Google Spreadsheets"
],
"author": "Dmytro Shpakovskyi",
"license": "MIT",
"bugs": {
"url": "https://github.com/Marketionist/tests2doc/issues"
},
"homepage": "https://github.com/Marketionist/tests2doc#readme",
"dependencies": {
"google-spreadsheet": "^2.0.8"
},
"devDependencies": {
"eslint": "^6.3.0"
}
}