UNPKG

2.74 kBJSONView Raw
1{
2 "name": "@azure/functions",
3 "version": "4.1.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 "lint": "eslint . --fix",
39 "updateVersion": "ts-node ./scripts/updateVersion.ts",
40 "validateRelease": "ts-node ./scripts/validateRelease.ts",
41 "watch": "webpack --watch --mode development"
42 },
43 "dependencies": {
44 "long": "^4.0.0",
45 "undici": "^5.13.0"
46 },
47 "devDependencies": {
48 "@types/chai": "^4.2.22",
49 "@types/chai-as-promised": "^7.1.5",
50 "@types/fs-extra": "^9.0.13",
51 "@types/long": "^4.0.2",
52 "@types/minimist": "^1.2.2",
53 "@types/mocha": "^9.1.1",
54 "@types/node": "^18.0.0",
55 "@types/semver": "^7.3.9",
56 "@typescript-eslint/eslint-plugin": "^5.12.1",
57 "@typescript-eslint/parser": "^5.12.1",
58 "chai": "^4.2.0",
59 "chai-as-promised": "^7.1.1",
60 "eslint": "^7.32.0",
61 "eslint-config-prettier": "^8.3.0",
62 "eslint-plugin-deprecation": "^1.3.2",
63 "eslint-plugin-header": "^3.1.1",
64 "eslint-plugin-import": "^2.29.0",
65 "eslint-plugin-prettier": "^4.0.0",
66 "eslint-webpack-plugin": "^3.2.0",
67 "eslint-plugin-simple-import-sort": "^10.0.0",
68 "fork-ts-checker-webpack-plugin": "^7.2.13",
69 "fs-extra": "^10.0.1",
70 "globby": "^11.0.0",
71 "minimist": "^1.2.6",
72 "mocha": "^9.1.1",
73 "mocha-junit-reporter": "^2.0.2",
74 "mocha-multi-reporters": "^1.5.1",
75 "prettier": "^2.4.1",
76 "semver": "^7.3.5",
77 "ts-loader": "^9.3.1",
78 "ts-node": "^3.3.0",
79 "typescript": "^4.5.5",
80 "typescript4": "npm:typescript@~4.0.0",
81 "webpack": "^5.74.0",
82 "webpack-cli": "^4.10.0"
83 }
84}