-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.51 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
64
65
66
67
68
{
"name": "dibellag-automation-framework",
"version": "0.0.0-development",
"description": "Protractor Cucumber framework using latest package versions",
"main": "protractor.conf.js",
"scripts": {
"pretest": "npm run report:cleanup",
"test": "protractor protractor.conf.js",
"test:ci": "protractor protractor.conf.js --seleniumAddress=http://127.0.0.1:4444/wd/hub",
"test:elementExplorer": "protractor protractor.conf.js --browserName chrome --seleniumAddress=http://127.0.0.1:4444/wd/hub --elementExplorer",
"test:dry-run": "protractor protractor.conf.js --browserName chrome --cucumberOpts.dry-run",
"test:unit": "echo 'Going to add tests soon..' && exit 0",
"test:scripts:parallel": "./test/scripts/parallel.sh",
"test:scripts:synchronous": "./test/scripts/synchronous.sh",
"test:scripts:ignore-failure": "./test/scripts/ignore-failure.sh",
"report:cleanup": "rm -rf test/output && mkdir test/output",
"report:generate": "node ./test/lib/reporter.config.js",
"webdriver-manager:update": "webdriver-manager update --versions.chrome 2.34 --gecko=false",
"webdriver-manager:start": "webdriver-manager start",
"webdriver-manager:setup": "webdriver-manager update && webdriver-manager start",
"lint": "(npm run lint:gherkin; npm run lint:es)",
"lint:fix": "eslint **/*.js --fix",
"lint:gherkin": "gherkin-lint",
"lint:es": "eslint **/*.js",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"commit": "git cz"
},
"pre-commit": [
"precommit-msg",
"lint"
],
"author": "Giuseppe DiBella",
"license": "ISC",
"dependencies": {
"babel-eslint": "^8.0.1",
"bluebird": "^3.5.1",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"chance": "^1.0.12",
"cucumber": "4.1.0",
"cucumber-html-reporter": "^4.0.3",
"eslint": "^5.1.0",
"eslint-plugin-protractor": "^1.40.0",
"gherkin-lint": "^2.6.0",
"glob": "^7.1.2",
"lodash": "^4.17.4",
"page-object-loader": "^1.1.0",
"pre-commit": "^1.2.2",
"protractor": "^5.2.0",
"protractor-cucumber-framework": "^6.0.0",
"yargs": "^12.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/gd46/dibellag-automation-framework.git"
},
"devDependencies": {
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"semantic-release": "^15.8.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}