forked from googlearchive/cloud-functions-emulator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.87 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.87 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
80
81
82
83
{
"name": "@google-cloud/functions-emulator",
"description": "Google Cloud Functions Emulator",
"version": "0.4.0",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": "6.9.1"
},
"main": "src/emulator/index.js",
"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",
"assert",
"before",
"beforeEach",
"describe",
"it",
"sinon"
],
"ignore": [
"**/node_modules/**",
"coverage",
"doc"
]
},
"scripts": {
"lint": "semistandard \"**/*.js\"",
"mocha": "mocha test/_setup test/ --recursive -t 5000 -R dot",
"mocha-debug": "mocha debug test/_setup test/ --recursive -t 5000 -R dot",
"cover": "nyc --cache mocha test/_setup test/ --recursive -t 5000 -R dot && nyc report --reporter=html",
"test": "npm run lint && npm run cover",
"format": "semistandard-format -w",
"start": "node ."
},
"dependencies": {
"body-parser": "1.15.2",
"cli-table2": "0.2.0",
"colors": "1.1.2",
"configstore": "^2.1.0",
"express": "4.14.0",
"got": "^6.6.3",
"lodash.merge": "^4.6.0",
"response-time": "2.3.2",
"winston": "2.3.0",
"yargs": "6.4.0"
},
"devDependencies": {
"istanbul": "0.4.5",
"mocha": "3.2.0",
"nyc": "10.0.0",
"power-assert": "1.4.2",
"proxyquire": "1.7.10",
"semistandard": "9.1.0",
"semistandard-format": "3.0.0",
"sinon": "1.17.6"
},
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/cloud-functions-emulator.git"
}
}