-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
30 lines (30 loc) · 860 Bytes
/
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
{
"name": "google-cloud-build-example",
"version": "1.0.0",
"description": "Example running Cypress end-to-end tests on Google Cloud Build",
"main": "index.js",
"scripts": {
"test": "start-test 5000 cy:run",
"start": "serve public",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "start-test 5000 cy:open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/tiny-blog.git"
},
"keywords": [],
"author": "Gleb Bahmutov <[email protected]> (https://glebbahmutov.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/bahmutov/tiny-blog/issues"
},
"homepage": "https://github.com/bahmutov/tiny-blog#readme",
"devDependencies": {
"cypress": "3.4.1",
"serve": "9.6.0",
"start-server-and-test": "1.9.1",
"@bahmutov/print-env": "1.2.0"
}
}