This repository was archived by the owner on Oct 6, 2018. It is now read-only.
forked from googlearchive/cloud-functions-emulator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.76 KB
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
{
"name": "@google-cloud/functions-emulator",
"description": "Google Cloud Functions Emulator",
"version": "0.3.0",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": "6.9.1"
},
"bin": {
"functions": "./bin/functions"
},
"contributors": [
{
"name": "Jason Dobry",
"email": "jason.dobry@gmail.com"
},
{
"name": "Jason Polites",
"email": "jason.polites@gmail.com"
}
],
"files": [
"AUTHORS",
"bin/",
"config.js",
"CONTRIBUTORS",
"src/"
],
"semistandard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
],
"ignore": [
"**/node_modules/**",
"coverage",
"doc"
]
},
"scripts": {
"lint": "semistandard \"**/*.js\"",
"mocha": "mocha test/ --recursive -t 20000 -R dot",
"mocha-debug": "mocha debug test/ --recursive -t 20000 -R dot",
"cover": "nyc --cache mocha test/ --recursive -t 20000 -R dot && nyc report --reporter=html",
"test": "npm run lint && npm run cover",
"format": "semistandard-format -w"
},
"dependencies": {
"body-parser": "^1.15.2",
"cli-table2": "^0.2.0",
"colors": "^1.1.2",
"connect-timeout": "^1.7.0",
"express": "^4.14.0",
"jsonfile": "^2.4.0",
"request": "^2.75.0",
"response-time": "^2.3.1",
"winston": "^2.2.0",
"yargs": "^6.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.0",
"nyc": "^8.3.2",
"proxyquire": "^1.7.10",
"semistandard": "^9.0.0",
"semistandard-format": "^3.0.0",
"sinon": "^1.17.6"
},
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/cloud-functions-emulator.git"
}
}