UNPKG

azure-functions-ts-essentials

Version:

Essential interfaces and tools for backend development on Azure Functions with TypeScript

78 lines (77 loc) 2.21 kB
{ "name": "azure-functions-ts-essentials", "version": "1.3.2", "description": "Essential interfaces and tools for backend development on Azure Functions with TypeScript", "repository": { "type": "git", "url": "https://github.com/azure-seed/azure-functions-ts-essentials.git" }, "keywords": [ "azure-functions", "azure" ], "author": { "name": "Burak Tasci", "email": "me@fulls1z3.com" }, "license": "MIT", "bugs": { "url": "https://github.com/azure-seed/azure-functions-ts-essentials/issues" }, "homepage": "https://github.com/azure-seed/azure-functions-ts-essentials#readme", "scripts": { "clean": "rimraf .cache dist", "build": "ts-node ./tools/build/rollup.ts && rimraf .temp", "ci:before": "greenkeeper-lockfile-update", "ci:after": "greenkeeper-lockfile-upload", "lint": "tslint -p ./tsconfig.json --force", "test": "jest --coverage --colors", "test:ci": "jest --ci --coverage --colors", "release": "standard-version" }, "main": "./bundles/azure-functions-ts-essentials.umd.js", "module": "./azure-functions-ts-essentials.es5.js", "es2015": "./azure-functions-ts-essentials.js", "typings": "./index.d.ts", "devDependencies": { "@types/jest": "~22.2.3", "@types/node": "~10.0.9", "rimraf": "~2.6.2", "ts-node": "~6.0.3", "glob": "~7.1.2", "camelcase": "~5.0.0", "rollup": "~0.42.0", "rollup-plugin-node-resolve": "~3.3.0", "rollup-plugin-commonjs": "~8.3.0", "rollup-plugin-sourcemaps": "~0.4.2", "rollup-plugin-uglify": "~3.0.0", "jest": "~22.4.3", "jest-junit-reporter": "~1.1.0", "ts-jest": "~22.4.6", "standard-version": "~4.3.0", "tslint": "~5.10.0", "backend-tslint-rules": "1.3.0", "typescript": "~2.8.3" }, "jest": { "transform": { "^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js" }, "testMatch": [ "**/*.spec.ts" ], "moduleFileExtensions": [ "ts", "js" ], "testResultsProcessor": "./node_modules/jest-junit-reporter", "cache": false, "silent": true }, "greenkeeper": { "ignore": [ "rollup", "rollup-plugin-commonjs" ] } }