73 строки
2.7 KiB
JSON
73 строки
2.7 KiB
JSON
{
|
|
"name": "azure-functions-nodejs-worker",
|
|
"author": "Microsoft Corporation",
|
|
"version": "4.0.0",
|
|
"description": "Microsoft Azure Functions NodeJS Worker",
|
|
"license": "(MIT OR Apache-2.0)",
|
|
"dependencies": {
|
|
"@grpc/grpc-js": "^1.2.7",
|
|
"@grpc/proto-loader": "^0.6.4",
|
|
"long": "^4.0.0",
|
|
"minimist": "^1.2.5",
|
|
"uuid": "^8.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^2.2.48",
|
|
"@types/node": "^16.9.6",
|
|
"@types/sinon": "^2.3.7",
|
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
"@typescript-eslint/parser": "^4.33.0",
|
|
"chai": "^4.2.0",
|
|
"chai-as-promised": "^7.1.1",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-header": "^3.1.1",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"eslint": "^7.32.0",
|
|
"husky": "^7.0.2",
|
|
"chalk": "^4.0.0",
|
|
"jsdoc": "^3.6.3",
|
|
"mocha": "^9.1.1",
|
|
"mocha-junit-reporter": "^2.0.2",
|
|
"mocha-multi-reporters": "^1.5.1",
|
|
"mock-require": "^2.0.2",
|
|
"node-abi": "2.1.1",
|
|
"prettier": "^2.4.1",
|
|
"protobufjs": "^6.11.2",
|
|
"rimraf": "^2.6.3",
|
|
"semver": "^7.1.2",
|
|
"shx": "^0.3.3",
|
|
"sinon": "^6.0.0",
|
|
"string-replace-webpack-plugin": "^0.1.3",
|
|
"ts-node": "^3.3.0",
|
|
"typescript": "^4.1.3",
|
|
"typescript3": "npm:typescript@~3.7.0",
|
|
"typescript4": "npm:typescript@~4.0.0",
|
|
"uglify-js": "^3.7.7",
|
|
"webpack": "^5.53.0",
|
|
"webpack-cli": "^4.8.0"
|
|
},
|
|
"homepage": "https://github.com/Azure/azure-functions-nodejs-worker",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Azure/azure-functions-nodejs-worker.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Azure/azure-functions-nodejs-worker/issues"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist && rimraf azure-functions-language-worker-protobuf/src/rpc*",
|
|
"build": "rimraf dist && npm run gen && shx mkdir -p dist/azure-functions-language-worker-protobuf/src && shx cp azure-functions-language-worker-protobuf/src/rpc.* dist/azure-functions-language-worker-protobuf/src/. && node ./node_modules/typescript/bin/tsc",
|
|
"build-nomaps": "npm run build -- --sourceMap false",
|
|
"gen": "node scripts/generateProtos.js",
|
|
"test": "mocha -r ts-node/register ./test/**/*.ts --reporter mocha-multi-reporters --reporter-options configFile=test/mochaReporterOptions.json",
|
|
"lint": "eslint .",
|
|
"lint-fix": "eslint . --fix",
|
|
"watch": "node ./node_modules/typescript/bin/tsc --watch",
|
|
"prepare": "husky install"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "dist/src/nodejsWorker.js"
|
|
}
|