forked from Azure/azure-functions-nodejs-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.6 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
{
"name": "@azure/functions",
"version": "4.1.0",
"description": "Microsoft Azure Functions NodeJS Framework",
"keywords": [
"azure",
"azure-functions",
"serverless",
"typescript"
],
"author": "Microsoft",
"license": "MIT",
"homepage": "https://github.com/Azure/azure-functions-nodejs-library",
"repository": {
"type": "git",
"url": "https://github.com/Azure/azure-functions-nodejs-library.git"
},
"bugs": {
"url": "https://github.com/Azure/azure-functions-nodejs-library/issues"
},
"main": "./dist/azure-functions.js",
"types": "types/index.d.ts",
"files": [
"dist/",
"src/",
"types/",
"LICENSE",
"README.md",
"_manifest"
],
"engines": {
"node": ">=18.0"
},
"scripts": {
"build": "webpack --mode development",
"minify": "webpack --mode production",
"test": "ts-node ./test/index.ts",
"lint": "eslint . --fix",
"updateVersion": "ts-node ./scripts/updateVersion.ts",
"validateRelease": "ts-node ./scripts/validateRelease.ts",
"watch": "webpack --watch --mode development"
},
"dependencies": {
"long": "^4.0.0",
"undici": "^5.13.0"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.5",
"@types/fs-extra": "^9.0.13",
"@types/long": "^4.0.2",
"@types/minimist": "^1.2.2",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-webpack-plugin": "^3.2.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"fs-extra": "^10.0.1",
"globby": "^11.0.0",
"minimist": "^1.2.6",
"mocha": "^9.1.1",
"mocha-junit-reporter": "^2.0.2",
"mocha-multi-reporters": "^1.5.1",
"prettier": "^2.4.1",
"semver": "^7.3.5",
"ts-loader": "^9.3.1",
"ts-node": "^3.3.0",
"typescript": "^4.5.5",
"typescript4": "npm:typescript@~4.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}