This repository has been archived by the owner on Feb 16, 2021. It is now read-only.
forked from michaseel/grunt-galenframework
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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
56
57
58
59
60
61
62
63
{
"name": "grunt-galenframework",
"version": "2.4.4",
"description": "Grunt plugin for Galen Framework",
"files": [
"tasks",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/hypery2k/grunt-galenframework"
},
"keywords": [
"grunt",
"galen",
"galenframework",
"responsive",
"test",
"testing",
"webdriver",
"selenium",
"TDD",
"BDD"
],
"dependencies": {
"async": "^3.0.1",
"galenframework": "2.4.4",
"geckodriver": "1.19.1",
"snyk": "^1.230.5"
},
"devDependencies": {
"chromedriver": "^78.0.1",
"conventional-changelog-cli": "2.0.25",
"grunt": "^1.0.3",
"grunt-cli": "1.3.2",
"jsdoc": "3.6.3",
"jsdoc-to-markdown": "5.0.2",
"jshint": "^2.9.6"
},
"scripts": {
"test": "cd test && npm install && npm install .. --no-save && grunt --debug",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:add": "git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
"release": "npm run test && npm run changelog && npm run changelog:add",
"release:major": "npm version major && npm run release && npm run version-and-push",
"release:minor": "npm version minor && npm run release && npm run version-and-push",
"release:patch": "npm version patch && npm run release && npm run version-and-push",
"version-and-push": "git push origin && git push origin --tags && npm run publish-and-merge",
"publish-and-merge": "git checkout master && git merge develop && git push && git checkout develop && npm publish",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect",
"prepare": "npm run snyk-protect"
},
"author": {
"name": "Martin Reinhardt"
},
"license": "MIT",
"engines": {
"node": ">= 4.4",
"npm": ">= 3"
},
"snyk": true
}