forked from Azure/azure-functions-pack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.95 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
{
"name": "azure-functions-deploy",
"version": "0.0.7",
"description": "Pack and deploy azure functions with webpack,and Azure Kudu API",
"license": "MIT",
"repository": "https://github.com/qs-wang/azure-functions-deploy",
"author": "Q.S. Wang",
"contributors": [
"Q.S. Wang (https://github.com/qs-wang)",
"Chris Anderson <[email protected]> (https://github.com/christopheranderson)",
"serverless-azure-functions"
],
"bin": {
"funcdeploy": "./lib/main.js"
},
"keywords": [
"azure-functions",
"deploy",
"webpack"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"build": "npm run clean && mkdir lib && mkdir lib/provider && cp -r ./src/provider/armTemplates ./lib/provider/ && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty",
"test": "npm run build && mocha --compilers ts:ts-node/register --recursive test/**/*-spec.ts",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"e2etst": "npm run "
},
"dependencies": {
"@types/archiver": "^2.0.1",
"@types/bluebird": "^3.5.18",
"archiver": "^2.1.0",
"az-login": "^0.3.0",
"azure-arm-resource": "^3.0.0-preview",
"azure-arm-website": "^2.0.0-preview",
"bluebird": "^3.5.1",
"commander": "~2.9.0",
"jsonpath": "^1.0.0",
"rimraf": "~2.5.4",
"webpack": "~3.5.6",
"winston": "~2.3.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.18",
"@types/commander": "~2.3.31",
"@types/debug": "0.0.29",
"@types/jest": "~21.1.5",
"@types/node": "6.0.31",
"@types/rimraf": "0.0.28",
"@types/webpack": "^3.0.14",
"@types/winston": "~2.2.0",
"chai": "~3.5.0",
"jest": "^21.2.1",
"ts-node": "~1.0.0",
"tslint": "~4.0.0",
"typescript": "~2.6.2"
},
"engines": {
"node": ">=6.5.0"
}
}