func-cli-nodejs-v4 4.0.4764
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +392 -0
- package/assets/azure-functions-logo-color-raster.png +0 -0
- package/lib/copy-metadata.js +10 -0
- package/lib/install.js +101 -0
- package/lib/main.js +21 -0
- package/npm-shrinkwrap.json +822 -0
- package/package.json +39 -0
package/package.json
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
{
|
2
|
+
"name": "func-cli-nodejs-v4",
|
3
|
+
"version": "4.0.4764",
|
4
|
+
"description": "Azure Functions Core Tools",
|
5
|
+
"scripts": {
|
6
|
+
"postinstall": "node lib/install.js",
|
7
|
+
"prepublishOnly": "node lib/copy-metadata.js"
|
8
|
+
},
|
9
|
+
"author": "Microsoft",
|
10
|
+
"license": "MIT",
|
11
|
+
"preferGlobal": true,
|
12
|
+
"repository": {
|
13
|
+
"type": "git",
|
14
|
+
"url": "https://github.com/Azure/azure-functions-core-tools.git"
|
15
|
+
},
|
16
|
+
"bin": {
|
17
|
+
"func": "lib/main.js",
|
18
|
+
"azfun": "lib/main.js",
|
19
|
+
"azurefunctions": "lib/main.js"
|
20
|
+
},
|
21
|
+
"os": [
|
22
|
+
"win32",
|
23
|
+
"darwin",
|
24
|
+
"linux"
|
25
|
+
],
|
26
|
+
"engines": {
|
27
|
+
"node": ">=6.9.1"
|
28
|
+
},
|
29
|
+
"dependencies": {
|
30
|
+
"chalk": "3.0.0",
|
31
|
+
"command-exists": "1.2.8",
|
32
|
+
"glob": "7.1.6",
|
33
|
+
"https-proxy-agent": "5.0.0",
|
34
|
+
"progress": "2.0.3",
|
35
|
+
"rimraf": "3.0.2",
|
36
|
+
"tmp": "0.1.0",
|
37
|
+
"unzipper": "0.10.10"
|
38
|
+
}
|
39
|
+
}
|