forked from serverless/serverless-azure-functions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 3.29 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
{
"name": "serverless-azure-functions",
"version": "2.1.3",
"description": "Provider plugin for the Serverless Framework v1.x which adds support for Azure Functions.",
"license": "MIT",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"author": "Azure Functions",
"scripts": {
"start": "npm run test -- --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"pretest": "npm run lint",
"test": "jest",
"test:ci": "npm run test -- --ci",
"test:coverage": "npm run test -- --coverage",
"clean:int": "rm -rf integrationTests/configurations/**/.serverless integrationTests/configurations/**/node_modules integrationTests/configurations/**/local.settings.json",
"pretest:int": "npm run clean:int",
"test:int": "clvr",
"compile": "tsc",
"prebuild": "shx rm -rf lib/ && npm run test",
"build": "npm run compile",
"generate:spn": "bash ./scripts/generate-service-principal.sh",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:condensed": "npm run changelog && node ./scripts/condenseChangelog.js"
},
"repository": {
"git": "https://github.com/serverless/serverless-azure-functions"
},
"lcov.path": [
"./coverage/lcov.info"
],
"homepage": "https://github.com/serverless/serverless-azure-functions",
"keywords": [
"serverless",
"serverless framework",
"serverless applications",
"serverless modules",
"azure functions",
"iot",
"internet of things",
"serverless.com"
],
"files": [
"lib/"
],
"dependencies": {
"@azure/arm-apimanagement": "^5.1.0",
"@azure/arm-appservice": "^5.7.0",
"@azure/arm-keyvault": "^1.2.1",
"@azure/arm-resources": "^1.0.1",
"@azure/arm-storage": "^9.0.1",
"@azure/ms-rest-nodeauth": "^1.0.1",
"@azure/storage-blob": "^10.3.0",
"acorn": "^7.0.0",
"axios": "^0.18.0",
"azure-functions-core-tools": "^3.0.2245",
"cross-spawn": "^7.0.2",
"deep-equal": "^1.0.1",
"js-yaml": "^3.13.1",
"jsonpath": "^1.0.1",
"lodash": "^4.16.6",
"md5": "^2.2.1",
"open": "^6.3.0",
"querystring": "^0.2.0",
"request": "^2.81.0",
"rimraf": "^2.7.1",
"semver": "^6.3.0",
"xml2js": "^0.4.22",
"zip-folder": "^1.0.0"
},
"devDependencies": {
"@azure/ms-rest-js": "^1.8.7",
"@babel/runtime": "^7.4.5",
"@types/jest": "^24.0.13",
"@types/jsonpath": "^0.2.0",
"@types/lodash": "^4.14.130",
"@types/mock-fs": "^3.6.30",
"@types/open": "^6.1.0",
"@types/request": "^2.48.1",
"@types/serverless": "^1.18.2",
"@types/xml": "^1.0.3",
"@types/xml2js": "^0.4.5",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"axios-mock-adapter": "^1.16.0",
"babel-jest": "^24.8.0",
"babel-preset-react-app": "^9.0.0",
"clvr": "^0.7.1",
"conventional-changelog-cli": "^2.0.23",
"eslint": "^5.16.0",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"jest-os-detection": "^1.1.1",
"mock-fs": "^4.10.0",
"mock-spawn": "^0.2.6",
"serverless": "^1.44.1",
"shx": "^0.3.2",
"ts-node": "^8.8.2",
"typescript": "^3.4.5"
},
"optionalDependencies": {
"serverless-webpack": "^4.2.0",
"webpack": "^3.10.0"
},
"engines": {
"node": ">= 6.5.0"
}
}