azure-functions-nodejs-library/package.json

84 строки
2.6 KiB
JSON

{
"name": "@azure/functions",
"version": "3.5.1",
"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"
],
"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",
"uuid": "^8.3.0",
"iconv-lite": "^0.6.3"
},
"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": "^16.9.6",
"@types/semver": "^7.3.9",
"@types/sinon": "^7.0.0",
"@types/uuid": "^8.3.4",
"@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-prettier": "^4.0.0",
"eslint-webpack-plugin": "^3.2.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",
"sinon": "^7.0.0",
"ts-loader": "^9.3.1",
"ts-node": "^3.3.0",
"typescript": "^4.5.5",
"typescript3": "npm:typescript@~3.7.0",
"typescript4": "npm:typescript@~4.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}