@adonisjs/profiler
Advanced tools
Comparing version 6.0.8 to 6.0.9
293
package.json
{ | ||
"name": "@adonisjs/profiler", | ||
"version": "6.0.8", | ||
"description": "Profiler to time function calls in AdonisJs with context", | ||
"main": "build/index.js", | ||
"files": [ | ||
"build/adonis-typings", | ||
"build/src", | ||
"build/exceptions.json", | ||
"build/index.d.ts", | ||
"build/index.js" | ||
], | ||
"scripts": { | ||
"mrm": "mrm --preset=@adonisjs/mrm-preset", | ||
"pretest": "npm run lint", | ||
"test": "node .bin/test.js", | ||
"clean": "del build", | ||
"compile": "npm run lint && npm run clean && tsc", | ||
"build": "npm run compile", | ||
"commit": "git-cz", | ||
"release": "np --message=\"chore(release): %s\"", | ||
"version": "npm run build", | ||
"format": "prettier --write .", | ||
"prepublishOnly": "npm run build", | ||
"lint": "eslint . --ext=.ts", | ||
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json adonisjs/profiler" | ||
}, | ||
"keywords": [ | ||
"profiler", | ||
"adonisjs", | ||
"intrumentation" | ||
], | ||
"author": "virk,adonisjs", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@adonisjs/logger": "^4.1.3", | ||
"@adonisjs/mrm-preset": "^5.0.2", | ||
"@adonisjs/require-ts": "^2.0.10", | ||
"@poppinss/dev-utils": "^2.0.2", | ||
"@types/node": "^17.0.19", | ||
"commitizen": "^4.2.4", | ||
"cz-conventional-changelog": "^3.3.0", | ||
"del-cli": "^4.0.1", | ||
"eslint": "^8.9.0", | ||
"eslint-config-prettier": "^8.4.0", | ||
"eslint-plugin-adonis": "^2.1.0", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"github-label-sync": "^2.0.1", | ||
"husky": "^7.0.1", | ||
"japa": "^4.0.0", | ||
"mrm": "^3.0.2", | ||
"np": "^7.5.0", | ||
"prettier": "^2.3.2", | ||
"typescript": "^4.5.5" | ||
}, | ||
"nyc": { | ||
"exclude": [ | ||
"test" | ||
], | ||
"extension": [ | ||
".ts" | ||
] | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validateCommit/conventional/validate.js" | ||
} | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "cz-conventional-changelog" | ||
} | ||
}, | ||
"dependencies": { | ||
"@poppinss/utils": "^4.0.2", | ||
"jest-worker": "^27.5.1" | ||
}, | ||
"peerDependencies": { | ||
"@adonisjs/logger": "^4.0.0" | ||
}, | ||
"np": { | ||
"contents": ".", | ||
"anyBranch": false | ||
}, | ||
"directories": { | ||
"doc": "docs", | ||
"test": "test" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/adonisjs/profiler.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/adonisjs/profiler/issues" | ||
}, | ||
"homepage": "https://github.com/adonisjs/profiler#readme", | ||
"adonisjs": { | ||
"exceptions": "./build/exceptions.json" | ||
}, | ||
"publishConfig": { | ||
"access": "public", | ||
"tag": "latest" | ||
}, | ||
"mrmConfig": { | ||
"core": true, | ||
"license": "MIT", | ||
"services": [ | ||
"github-actions" | ||
], | ||
"minNodeVersion": "14.15.4", | ||
"probotApps": [ | ||
"stale", | ||
"lock" | ||
], | ||
"runGhActionsOnWindows": false | ||
}, | ||
"eslintConfig": { | ||
"extends": [ | ||
"plugin:adonis/typescriptPackage", | ||
"prettier" | ||
], | ||
"plugins": [ | ||
"prettier" | ||
], | ||
"rules": { | ||
"prettier/prettier": [ | ||
"error", | ||
{ | ||
"endOfLine": "auto" | ||
} | ||
] | ||
} | ||
}, | ||
"eslintIgnore": [ | ||
"build" | ||
], | ||
"prettier": { | ||
"trailingComma": "es5", | ||
"semi": false, | ||
"singleQuote": true, | ||
"useTabs": false, | ||
"quoteProps": "consistent", | ||
"bracketSpacing": true, | ||
"arrowParens": "always", | ||
"printWidth": 100 | ||
} | ||
"name": "@adonisjs/profiler", | ||
"version": "6.0.9", | ||
"description": "Profiler to time function calls in AdonisJs with context", | ||
"main": "build/index.js", | ||
"files": [ | ||
"build/adonis-typings", | ||
"build/src", | ||
"build/exceptions.json", | ||
"build/index.d.ts", | ||
"build/index.js" | ||
], | ||
"scripts": { | ||
"mrm": "mrm --preset=@adonisjs/mrm-preset", | ||
"pretest": "npm run lint", | ||
"test": "node -r @adonisjs/require-ts/build/register bin/test.ts", | ||
"clean": "del-cli build", | ||
"compile": "npm run lint && npm run clean && tsc", | ||
"build": "npm run compile", | ||
"commit": "git-cz", | ||
"release": "np --message=\"chore(release): %s\"", | ||
"version": "npm run build", | ||
"format": "prettier --write .", | ||
"prepublishOnly": "npm run build", | ||
"lint": "eslint . --ext=.ts", | ||
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json adonisjs/profiler" | ||
}, | ||
"keywords": [ | ||
"profiler", | ||
"adonisjs", | ||
"intrumentation" | ||
], | ||
"author": "virk,adonisjs", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@adonisjs/logger": "^4.1.4", | ||
"@adonisjs/mrm-preset": "^5.0.3", | ||
"@adonisjs/require-ts": "^2.0.11", | ||
"@japa/assert": "^1.3.3", | ||
"@japa/run-failed-tests": "^1.0.7", | ||
"@japa/runner": "^2.0.6", | ||
"@japa/spec-reporter": "^1.1.12", | ||
"@poppinss/dev-utils": "^2.0.3", | ||
"@types/node": "^17.0.23", | ||
"commitizen": "^4.2.4", | ||
"cz-conventional-changelog": "^3.3.0", | ||
"del-cli": "^4.0.1", | ||
"eslint": "^8.12.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-adonis": "^2.1.0", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"github-label-sync": "^2.2.0", | ||
"husky": "^7.0.1", | ||
"mrm": "^4.0.0", | ||
"np": "^7.6.1", | ||
"prettier": "^2.6.2", | ||
"typescript": "^4.6.3" | ||
}, | ||
"nyc": { | ||
"exclude": [ | ||
"test" | ||
], | ||
"extension": [ | ||
".ts" | ||
] | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validateCommit/conventional/validate.js" | ||
} | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "cz-conventional-changelog" | ||
} | ||
}, | ||
"dependencies": { | ||
"@poppinss/utils": "^4.0.3", | ||
"jest-worker": "^27.5.1" | ||
}, | ||
"peerDependencies": { | ||
"@adonisjs/logger": "^4.0.0" | ||
}, | ||
"np": { | ||
"contents": ".", | ||
"anyBranch": false | ||
}, | ||
"directories": { | ||
"doc": "docs", | ||
"test": "test" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/adonisjs/profiler.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/adonisjs/profiler/issues" | ||
}, | ||
"homepage": "https://github.com/adonisjs/profiler#readme", | ||
"adonisjs": { | ||
"exceptions": "./build/exceptions.json" | ||
}, | ||
"publishConfig": { | ||
"access": "public", | ||
"tag": "latest" | ||
}, | ||
"mrmConfig": { | ||
"core": true, | ||
"license": "MIT", | ||
"services": [ | ||
"github-actions" | ||
], | ||
"minNodeVersion": "14.15.4", | ||
"probotApps": [ | ||
"stale", | ||
"lock" | ||
], | ||
"runGhActionsOnWindows": false | ||
}, | ||
"eslintConfig": { | ||
"extends": [ | ||
"plugin:adonis/typescriptPackage", | ||
"prettier" | ||
], | ||
"plugins": [ | ||
"prettier" | ||
], | ||
"rules": { | ||
"prettier/prettier": [ | ||
"error", | ||
{ | ||
"endOfLine": "auto" | ||
} | ||
] | ||
} | ||
}, | ||
"eslintIgnore": [ | ||
"build" | ||
], | ||
"prettier": { | ||
"trailingComma": "es5", | ||
"semi": false, | ||
"singleQuote": true, | ||
"useTabs": false, | ||
"quoteProps": "consistent", | ||
"bracketSpacing": true, | ||
"arrowParens": "always", | ||
"printWidth": 100 | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
30581
22
Updated@poppinss/utils@^4.0.3