This repository has been archived by the owner on May 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
114 lines (114 loc) · 3.62 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@google-cloud/functions-emulator",
"description": "Google Cloud Functions Emulator",
"version": "1.0.0-beta.5",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=6 <10"
},
"repository": "GoogleCloudPlatform/cloud-functions-emulator",
"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"
]
},
"contributors": [
"Ace Nassri <anassri@google.com>",
"Akinori Machino <akinori.machino@icloud.com>",
"Jason Dobry <jason.dobry@gmail.com>",
"Jason Polites <jason.polites@gmail.com>",
"Justin Beckwith <justin.beckwith@gmail.com>",
"Kim Vogt <kim.vogt@gmail.com>",
"Kris J. Pruden <kpruden@users.noreply.github.com>",
"Lauren Long <laurenzlong@users.noreply.github.com>",
"Max Schoening <max@max.wtf>",
"Roseanna <saffy@users.noreply.github.com>",
"Slawek Walkowski <swalkowski@users.noreply.github.com>",
"Tim Swast <swast@google.com>",
"Tina Liang <tinaliang@google.com>",
"aminy <aminy@indicee.com>",
"renovate[bot] <renovate[bot]@users.noreply.github.com>"
],
"scripts": {
"lint": "semistandard",
"fix": "semistandard --fix",
"mocha": "mocha test/_setup test/ --recursive -t 120000 -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 120000 -S -R spec --require intelli-espower-loader",
"cover": "nyc --cache mocha test/_setup test/ --recursive -t 120000 -S -R spec --require intelli-espower-loader && nyc report --reporter=html",
"unit-cover": "nyc --cache mocha test/_setup test/ --grep \"unit/\" --recursive -t 120000 -S -R spec --require intelli-espower-loader && nyc report --reporter=html",
"system-cover": "nyc --cache mocha test/_setup test/ --grep \"system/\" --recursive -t 120000 -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",
"generate-scaffolding": "repo-tools generate contributors coc contributing license pr_template pkgjson"
},
"dependencies": {
"@google-cloud/storage": "^1.7.0",
"adm-zip": "^0.4.11",
"ajv": "^6.5.2",
"body-parser": "^1.18.3",
"chokidar": "^2.0.4",
"cli-table3": "^0.5.1",
"colors": "^1.3.1",
"configstore": "^4.0.0",
"express": "^4.16.3",
"googleapis": "^35.0.0",
"got": "^9.0.0",
"http-proxy": "^1.17.0",
"lodash": "4.17.11",
"make-dir": "1.3.0",
"prompt": "1.0.0",
"rimraf": "2.6.2",
"semver": "5.6.0",
"serializerr": "1.0.3",
"tmp": "0.0.33",
"uuid": "3.2.1",
"winston": "3.1.0",
"xdg-basedir": "3.0.0",
"yargs": "11.0.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^3.0.0",
"codecov": "^3.0.4",
"intelli-espower-loader": "^1.0.1",
"mocha": "^5.2.0",
"nock": "^10.0.0",
"nyc": "^13.0.0",
"power-assert": "^1.6.0",
"proxyquire": "^2.0.0",
"semistandard": "^13.0.0",
"semistandard-format": "^3.0.0",
"sinon": "^7.0.0",
"supertest": "^3.0.0"
}
}