UNPKG

2.85 kBJSONView Raw
1{
2 "name": "@azure/functions",
3 "version": "4.3.0",
4 "description": "Microsoft Azure Functions NodeJS Framework",
5 "keywords": [
6 "azure",
7 "azure-functions",
8 "serverless",
9 "typescript"
10 ],
11 "author": "Microsoft",
12 "license": "MIT",
13 "homepage": "https://github.com/Azure/azure-functions-nodejs-library",
14 "repository": {
15 "type": "git",
16 "url": "https://github.com/Azure/azure-functions-nodejs-library.git"
17 },
18 "bugs": {
19 "url": "https://github.com/Azure/azure-functions-nodejs-library/issues"
20 },
21 "main": "./dist/azure-functions.js",
22 "types": "types/index.d.ts",
23 "files": [
24 "dist/",
25 "src/",
26 "types/",
27 "LICENSE",
28 "README.md",
29 "_manifest"
30 ],
31 "engines": {
32 "node": ">=18.0"
33 },
34 "scripts": {
35 "build": "webpack --mode development",
36 "minify": "webpack --mode production",
37 "test": "ts-node ./test/index.ts",
38 "format": "prettier . --write",
39 "lint": "eslint . --fix",
40 "updateVersion": "ts-node ./scripts/updateVersion.ts",
41 "validateRelease": "ts-node ./scripts/validateRelease.ts",
42 "watch": "webpack --watch --mode development"
43 },
44 "dependencies": {
45 "cookie": "^0.6.0",
46 "long": "^4.0.0",
47 "undici": "^5.13.0"
48 },
49 "devDependencies": {
50 "@types/chai": "^4.2.22",
51 "@types/chai-as-promised": "^7.1.5",
52 "@types/cookie": "^0.6.0",
53 "@types/fs-extra": "^9.0.13",
54 "@types/long": "^4.0.2",
55 "@types/minimist": "^1.2.2",
56 "@types/mocha": "^9.1.1",
57 "@types/node": "^18.0.0",
58 "@types/semver": "^7.3.9",
59 "@typescript-eslint/eslint-plugin": "^5.12.1",
60 "@typescript-eslint/parser": "^5.12.1",
61 "chai": "^4.2.0",
62 "chai-as-promised": "^7.1.1",
63 "eslint": "^7.32.0",
64 "eslint-config-prettier": "^8.3.0",
65 "eslint-plugin-deprecation": "^1.3.2",
66 "eslint-plugin-header": "^3.1.1",
67 "eslint-plugin-import": "^2.29.0",
68 "eslint-plugin-prettier": "^4.0.0",
69 "eslint-webpack-plugin": "^3.2.0",
70 "eslint-plugin-simple-import-sort": "^10.0.0",
71 "fork-ts-checker-webpack-plugin": "^7.2.13",
72 "fs-extra": "^10.0.1",
73 "globby": "^11.0.0",
74 "minimist": "^1.2.6",
75 "mocha": "^9.1.1",
76 "mocha-junit-reporter": "^2.0.2",
77 "mocha-multi-reporters": "^1.5.1",
78 "prettier": "^2.4.1",
79 "semver": "^7.3.5",
80 "ts-loader": "^9.3.1",
81 "ts-node": "^3.3.0",
82 "typescript": "^4.5.5",
83 "typescript4": "npm:typescript@~4.0.0",
84 "webpack": "^5.74.0",
85 "webpack-cli": "^4.10.0"
86 }
87}