mirror of
https://github.com/github/codeql-action.git
synced 2026-05-07 22:30:44 +00:00
149 lines
5.1 KiB
JSON
149 lines
5.1 KiB
JSON
{
|
|
"author": {
|
|
"name": "Microsoft Corporation",
|
|
"email": "azsdkteam@microsoft.com",
|
|
"url": "https://github.com/Azure/azure-sdk-for-js"
|
|
},
|
|
"browser": {
|
|
"os": false,
|
|
"process": false
|
|
},
|
|
"bugs": {
|
|
"url": "http://github.com/Azure/azure-sdk-for-js/issues"
|
|
},
|
|
"bundleDependencies": false,
|
|
"dependencies": {
|
|
"@azure/abort-controller": "^1.0.0",
|
|
"@azure/core-http": "^1.1.1",
|
|
"events": "^3.0.0",
|
|
"tslib": "^1.10.0"
|
|
},
|
|
"deprecated": false,
|
|
"description": "LRO Polling strtegy for the Azure SDK in TypeScript",
|
|
"devDependencies": {
|
|
"@microsoft/api-extractor": "7.7.11",
|
|
"@opentelemetry/api": "^0.6.1",
|
|
"@rollup/plugin-commonjs": "^11.0.1",
|
|
"@rollup/plugin-multi-entry": "^3.0.0",
|
|
"@rollup/plugin-node-resolve": "^7.0.0",
|
|
"@rollup/plugin-replace": "^2.2.0",
|
|
"@types/chai": "^4.1.6",
|
|
"@types/mocha": "^7.0.2",
|
|
"@types/node": "^8.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^2.0.0",
|
|
"@typescript-eslint/parser": "^2.0.0",
|
|
"assert": "^1.4.1",
|
|
"chai": "^4.2.0",
|
|
"eslint": "^6.1.0",
|
|
"eslint-config-prettier": "^6.0.0",
|
|
"eslint-plugin-no-null": "^1.0.2",
|
|
"eslint-plugin-no-only-tests": "^2.3.0",
|
|
"eslint-plugin-promise": "^4.1.1",
|
|
"karma": "^4.0.1",
|
|
"karma-chrome-launcher": "^3.0.0",
|
|
"karma-coverage": "^2.0.0",
|
|
"karma-edge-launcher": "^0.4.2",
|
|
"karma-env-preprocessor": "^0.1.1",
|
|
"karma-firefox-launcher": "^1.1.0",
|
|
"karma-ie-launcher": "^1.0.0",
|
|
"karma-junit-reporter": "^2.0.1",
|
|
"karma-mocha": "^1.3.0",
|
|
"karma-mocha-reporter": "^2.2.5",
|
|
"karma-remap-istanbul": "^0.6.0",
|
|
"mocha": "^7.1.1",
|
|
"mocha-junit-reporter": "^1.18.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"nyc": "^14.0.0",
|
|
"prettier": "^1.16.4",
|
|
"rimraf": "^3.0.0",
|
|
"rollup": "^1.16.3",
|
|
"rollup-plugin-shim": "^1.0.0",
|
|
"rollup-plugin-sourcemaps": "^0.4.2",
|
|
"rollup-plugin-terser": "^5.1.1",
|
|
"rollup-plugin-visualizer": "^3.1.1",
|
|
"ts-node": "^8.3.0",
|
|
"typescript": "~3.7.5",
|
|
"uglify-js": "^3.4.9"
|
|
},
|
|
"files": [
|
|
"types/core-lro.d.ts",
|
|
"dist/",
|
|
"dist-esm/",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"homepage": "https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/core/core-lro",
|
|
"keywords": [
|
|
"isomorphic",
|
|
"browser",
|
|
"javascript",
|
|
"node",
|
|
"microsoft",
|
|
"lro",
|
|
"polling"
|
|
],
|
|
"license": "MIT",
|
|
"main": "./dist/index.js",
|
|
"module": "dist-esm/src/index.js",
|
|
"name": "@azure/core-lro",
|
|
"nyc": {
|
|
"extension": [
|
|
".ts"
|
|
],
|
|
"exclude": [
|
|
"coverage/**/*",
|
|
"**/*.d.ts",
|
|
"**/*.js"
|
|
],
|
|
"reporter": [
|
|
"text",
|
|
"html",
|
|
"cobertura"
|
|
],
|
|
"all": true
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/Azure/azure-sdk-for-js.git"
|
|
},
|
|
"scripts": {
|
|
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
|
|
"build": "npm run build:es6 && npm run build:nodebrowser && npm run build:samples && npm run extract-api",
|
|
"build:es6": "tsc -p tsconfig.json",
|
|
"build:nodebrowser": "rollup -c 2>&1",
|
|
"build:samples": "tsc -p tsconfig.samples.json",
|
|
"build:test": "npm run build:es6 && rollup -c rollup.test.config.js 2>&1",
|
|
"check-format": "prettier --list-different --config ../../.prettierrc.json \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\" \"samples/**/*.ts\"",
|
|
"clean": "rimraf dist dist-esm dist-test types *.log browser statistics.html coverage src/**/*.js test/**/*.js",
|
|
"execute:samples": "echo skipped",
|
|
"extract-api": "tsc -p . && api-extractor run --local",
|
|
"format": "prettier --write --config ../../.prettierrc.json \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\" \"samples/**/*.ts\"",
|
|
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
|
"integration-test:browser": "echo skipped",
|
|
"integration-test:node": "echo skipped",
|
|
"lint": "eslint -c ../../.eslintrc.old.json src test --ext .ts -f html -o core-lro-lintReport.html || exit 0",
|
|
"lint:fix": "eslint -c ../../.eslintrc.old.json src test --ext .ts --fix --fix-type [problem,suggestion]",
|
|
"lint:terminal": "eslint -c ../../.eslintrc.old.json src test --ext .ts",
|
|
"pack": "npm pack 2>&1",
|
|
"prebuild": "npm run clean",
|
|
"test": "npm run build:test && npm run unit-test",
|
|
"test:browser": "npm run build:test && npm run unit-test:browser && npm run integration-test:browser",
|
|
"test:node": "npm run build:test && npm run unit-test:node && npm run integration-test:node",
|
|
"unit-test": "npm run unit-test:node && npm run unit-test:browser",
|
|
"unit-test:browser": "npm run build:test && karma start --single-run",
|
|
"unit-test:node": "npm run build:test && nyc mocha --require source-map-support/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 1200000 --full-trace dist-test/index.node.js"
|
|
},
|
|
"sdk-type": "client",
|
|
"sideEffects": false,
|
|
"tags": [
|
|
"isomorphic",
|
|
"browser",
|
|
"javascript",
|
|
"node",
|
|
"microsoft",
|
|
"lro",
|
|
"polling"
|
|
],
|
|
"types": "./types/core-lro.d.ts",
|
|
"version": "1.0.2"
|
|
} |