forked from gururajhm/cypress-apidemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.5 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "cypress-example-phptravels",
"version": "0.0.0-development",
"description": "This is an example app used to showcase Cypress.io testing. For a full reference of our documentation, go to https://docs.cypress.io",
"main": "index.js",
"files": [
"app",
"cypress"
],
"scripts": {
"build": "npm run lint && npm run types && npm run stop-only",
"dev": "npm start",
"types": "tsc --noEmit",
"test": "npm run cypress",
"pretest": "npm run lint && npm run types",
"print-env": "print-env",
"lint": "eslint --fix cypress/**/*.js app/assets/js/scripts.js",
"lint:yaml": "yamllint '*.yml' 'basic/*.yml' .buildkite/pipeline.yml .semaphore/semaphore.yml",
"colon:names": "colon-names",
"e2e": "cypress run",
"cy:run": "cypress run",
"e2eheadless": "cypress run",
"e2e:chrome": "cypress run --browser chrome",
"e2e:record": "cypress run --record",
"e2e:record:parallel": "cypress run --record --parallel",
"merge_reports": "mochawesome-merge --reportDir mochawesome-report > mochawesome-report/output.json",
"generate_mochawesome_report": "marge mochawesome-report/output.json",
"e2e_mochawesome": "cypress run; npm run merge_reports; npm run generate_mochawesome_report",
"test:ci": "run-p --race start:ci e2e",
"test:ci:chrome": "run-p --race start:ci e2e:chrome",
"test:ci:record": "run-p --race start:ci e2e:record",
"test:ci:record:windows": "run-p --race start:ci:windows e2e:record",
"test:ci:record:parallel": "run-p --race start:ci e2e:record:parallel",
"cy:verify": "cypress verify",
"cy:version": "cypress version",
"cy:run:record": "cypress run --record",
"cy:open": "cypress open",
"local:open": "start-test 8080 cy:open",
"local:run": "start-test 8080 cy:run",
"local:run:record": "start-test 8080 cy:run:record",
"stop-only": "stop-only -f cypress/integration",
"warn-only": "stop-only -f cypress/integration --warn",
"ci:set-port": "node ./scripts/set-port",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/gururajhm/cypress-phptravels"
},
"author": "Gururaj HM",
"license": "MIT",
"bugs": {
"url": "https://github.com/gururajhm/cypress-phptravels/issues"
},
"homepage": "https://github.com/gururajhm/cypress-phptravels#readme",
"dependencies": {
"npm-run-all": "^4.1.2",
"serve": "11.1.0"
},
"devDependencies": {
"@bahmutov/print-env": "1.2.0",
"babel-plugin-istanbul": "^4.1.6",
"cross-env": "^5.2.0",
"istanbul-lib-coverage": "^2.0.5",
"nyc": "^14.1.1",
"fs-extra": "8.1.0",
"graceful-fs": "4.2.2",
"@cypress/code-coverage": "^1.8.0",
"colon-names": "1.0.0",
"cucumber": "4.0.0",
"cucumber-html-reporter": "^4.0.2",
"cucumber-pretty": "1.4.0",
"cypress": "^3.4.1",
"cypress-cucumber-preprocessor": "1.11.0",
"globby": "9.1.0",
"husky": "1.3.1",
"mocha": "5.0.0",
"mochawesome": "^4.1.0",
"mochawesome-merge": "^2.0.1",
"stop-build": "1.1.0",
"stop-only": "3.0.1",
"typescript": "3.5.3",
"yaml-lint": "1.2.4"
},
"nyc": {
"temp-directory": "./coverage",
"report-dir": "./coverage"
},
"engines": {
"node": "10.16.3",
"npm": "6.9.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run warn-only && npm run lint:yaml",
"pre-push": "npm run stop-only && npm run lint:yaml"
}
},
"cypress-cucumber-preprocessor": {
"step_definitions": "cypress/support/step_definitions"
}
}