forked from googlearchive/cloud-functions-emulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.69 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
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
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@google-cloud/functions-emulator",
"description": "Google Cloud Functions Emulator",
"version": "1.0.0-alpha.21",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=6.9.1"
},
"main": "./bin/emulator",
"bin": {
"functions": "./bin/functions",
"functions-emulator": "./bin/functions"
},
"files": [
"AUTHORS",
"bin/",
"CHANGELOG.md",
"CONTRIBUTORS",
"mocks.js",
"src/",
"scripts/"
],
"semistandard": {
"globals": [
"after",
"afterEach",
"assert",
"before",
"beforeEach",
"describe",
"it",
"sinon"
],
"ignore": [
"**/node_modules/**",
"coverage",
"doc"
]
},
"scripts": {
"lint": "semistandard",
"mocha": "mocha test/_setup test/ --recursive -t 20000 -S -R spec --require intelli-espower-loader",
"unit-test": "npm run mocha -- --grep \"unit/\"",
"system-test": "npm run mocha -- --grep \"system/\"",
"mocha-debug": "mocha debug test/_setup test/ --recursive -t 20000 -S -R spec --require intelli-espower-loader",
"cover": "nyc --cache mocha test/_setup test/ --recursive -t 20000 -S -R spec --require intelli-espower-loader && nyc report --reporter=html",
"unit-cover": "nyc --cache mocha test/_setup test/ --grep \"unit/\" --recursive -t 20000 -S -R spec --require intelli-espower-loader && nyc report --reporter=html",
"system-cover": "nyc --cache mocha test/_setup test/ --grep \"system/\" --recursive -t 20000 -S -R spec --require intelli-espower-loader && nyc report --reporter=html",
"test": "npm run lint && npm run cover",
"format": "semistandard-format -w",
"start": "node .",
"postinstall": "node scripts/upgrade-warning"
},
"dependencies": {
"@google-cloud/storage": "1.1.1",
"adm-zip": "0.4.7",
"ajv": "5.1.6",
"body-parser": "1.17.2",
"cli-table2": "0.2.0",
"colors": "1.1.2",
"configstore": "3.1.0",
"express": "4.15.3",
"google-proto-files": "0.12.0",
"googleapis": "19.0.0",
"got": "7.0.0",
"grpc": "1.3.8",
"http-proxy": "1.16.2",
"lodash": "4.17.4",
"prompt": "1.0.0",
"rimraf": "2.6.1",
"semver": "5.3.0",
"serializerr": "1.0.3",
"supertest": "3.0.0",
"tmp": "0.0.31",
"uuid": "3.0.1",
"winston": "2.3.1",
"yargs": "8.0.2"
},
"devDependencies": {
"intelli-espower-loader": "1.0.1",
"mocha": "3.4.2",
"nyc": "11.0.2",
"power-assert": "1.4.4",
"proxyquire": "1.8.0",
"semistandard": "11.0.0",
"semistandard-format": "3.0.0",
"sinon": "2.3.4"
},
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/cloud-functions-emulator.git"
}
}