forked from DavidTNguyen/testing-workshop-cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.68 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
{
"name": "testing-workshop-cypress",
"version": "1.0.0",
"description": "A 3-4 hour testing workshop complete with application, exercise tests and speaker slides",
"main": "index.js",
"scripts": {
"test": "cypress run --spec 'cypress/integration/01-basic/*'",
"posttest": "cd react-todomvc && npm run reset",
"reset": "cd react-todomvc; npm run reset",
"cy:open": "cypress open",
"cy:run": "cypress run",
"start": "http-server --silent -p 3000 -c-1 todomvc-react",
"start:react": "http-server --silent -p 3000 -c-1 react-todomvc",
"ci": "start-test 3000",
"postinstall": "cd react-todomvc && npm install",
"format": "prettier-standard 'cypress/**/*.js'",
"lint": "standard 'cypress/**/*.js'"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/davidtnguyen/testing-workshop-cypress.git"
},
"keywords": [
"cypress",
"cypress-io",
"e2e",
"end-to-end",
"testing",
"workshop"
],
"author": "David T Nguyen <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/davidtnguyen/testing-workshop-cypress/issues"
},
"homepage": "https://github.com/davidtnguyen/testing-workshop-cypress#readme",
"devDependencies": {
"@babel/plugin-proposal-do-expressions": "7.5.0",
"@cypress/browserify-preprocessor": "2.1.1",
"babel-plugin-istanbul": "5.2.0",
"concurrently": "4.1.1",
"cypress": "3.4.1",
"cypress-dark": "1.7.13",
"cypress-failed-log": "2.5.1",
"cypress-istanbul": "1.3.0",
"cypress-pipe": "1.5.0",
"cypress-plugin-snapshots": "1.2.6",
"cypress-react-unit-test": "2.4.3",
"cypress-xpath": "1.4.0",
"debug": "4.1.1",
"http-server": "0.11.1",
"istanbul-lib-coverage": "2.0.5",
"json-server": "0.15.0",
"json-server-reset": "1.1.0",
"mocha": "6.1.4",
"mocha-junit-reporter": "1.23.1",
"mocha-multi-reporters": "1.1.7",
"mochawesome": "3.1.1",
"mochawesome-merge": "1.0.4",
"mochawesome-report-generator": "3.1.5",
"nyc": "14.1.1",
"pluralize": "8.0.0",
"prettier": "1.18.2",
"prettier-standard": "9.1.1",
"standard": "13.0.2",
"start-server-and-test": "1.10.0",
"tsify": "4.0.1",
"typescript": "3.5.3",
"webpack": "4.39.2",
"webpack-cli": "^3.3.6"
},
"engines": {
"node": ">=6"
},
"standard": {
"ignore": [
"cypress/integration/13-app-actions/todo-page-object.js",
"cypress/integration/16-preprocessors/spec.js"
],
"globals": [
"Cypress",
"cy",
"it",
"describe",
"context",
"beforeEach",
"assert",
"expect"
]
},
"dependencies": {
"acorn": "6.3.0"
}
}