forked from rochejul/gulp-angular-protractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.77 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
{
"name": "gulp-angular-protractor",
"version": "1.0.0",
"description": "Based on the gulp-protractor plugin with an option to start / stop automatically the webdriver server",
"license": "MIT",
"repository": "rochejul/gulp-angular-protractor",
"author": {
"name": "Julien Roche",
"email": "[email protected]",
"url": "https://github.com/rochejul"
},
"engineStrict": true,
"engines": {
"node": ">=6.9.x",
"npm": ">=3.10.8"
},
"scripts": {
"bump-release": "npm test && npm run npmversion -- --unpreid --git-push",
"bump-major": "npm test && npm run npmversion -- --increment major --git-push",
"bump-minor": "npm test && npm run npmversion -- --increment minor --git-push",
"bump-patch": "npm test && npm run npmversion -- --increment patch --git-push",
"bump-major-beta": "npm run npmversion -- --increment major --preid beta --nogit-tag --git-push",
"bump-minor-beta": "npm run npmversion -- --increment minor --preid beta --nogit-tag --git-push",
"generate-shrinkwrap": "npm shrinkwrap --only=prod",
"bump-patch-beta": "npm run npmversion -- --increment patch --preid beta --nogit-tag --git-push",
"npmversion": "node ./node_modules/npmversion/bin/npmversion",
"snapshot": "npm shrinkwrap --only=prod",
"test": "mocha --recursive --colors test/"
},
"files": [
"index.js",
"gulp-angular-protractor",
"npm-shrinkwrap.json"
],
"keywords": [
"gulpplugin"
],
"dependencies": {
"event-stream": "3.1.5",
"gulp-util": "3.0.1",
"lodash": "2.4.1"
},
"devDependencies": {
"chai": "1.10.0",
"eslint": "2.4.0",
"eslint-plugin-node": "2.0.0",
"mocha": "*",
"nock": "0.53.0",
"npmversion": "1.2.1",
"protractor": "4.0.11",
"webdriver-manager": "10.2.8"
}
}