forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 668 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 668 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": "appengine-static-files",
"description": "Serving static files in Node.js sample for Google App Engine",
"version": "0.0.1",
"private": true,
"license": "Apache Version 2.0",
"author": "Google Inc.",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"start": "node app.js",
"test": "mocha --exit test/*.test.js --url localhost:8080/static/main.css"
},
"cloud-repo-tools": {
"test": {
"app": {
"msg": "background-color",
"port": 8080
}
}
},
"dependencies": {
"express": "^4.16.4",
"pug": "^2.0.3"
},
"devDependencies": {
"mocha": "^7.0.0",
"supertest": "^4.0.2"
}
}