-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 859 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 859 Bytes
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
{
"name": "cypress-workshop-ci-example",
"version": "1.0.0",
"description": "A simple example app to be used during cypress-workshop-ci session",
"private": true,
"scripts": {
"start": "eleventy --serve",
"build": "eleventy",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/cypress-workshop-ci-example.git"
},
"keywords": [
"cypress-example",
"cypress-workshop-example"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/cypress-workshop-ci-example/issues"
},
"homepage": "https://github.com/bahmutov/cypress-workshop-ci-example#readme",
"devDependencies": {
"@11ty/eleventy": "0.11.1",
"cypress": "9.1.0",
"prettier": "2.2.1"
}
}