-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "headless-chrome-sample",
"engines": {
"node": "8.x"
},
"version": "1.0.0",
"description": "An example of taking screenshot with Puppeteer (Headless Chrome) in Node.js on Google App Engine.",
"scripts": {
"start": "node app.js",
"system-test": "repo-tools test app",
"unit-test": "ava --verbose test/*.test.js",
"lint": "repo-tools lint",
"pretest": "npm run lint",
"test": "npm run unit-test && npm run system-test"
},
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
},
"author": {
"name": "Google LLC"
},
"license": "Apache-2.0",
"dependencies": {
"express": "^4.16.3",
"puppeteer": "^1.2.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "2.3.0",
"ava": "^0.25.0",
"firebase": "^5.1.0",
"nodemon": "^1.18.3",
"semistandard": "^12.0.1"
},
"cloud-repo-tools": {
"test": {
"app": {
"msg": "Please provide URL"
}
},
"requiresKeyFile": true,
"requiresProjectId": true
}
}