get-current-line
Advanced tools
Comparing version 5.1.0 to 5.2.0-next.1589359810.bc7a845a1c90bed0a9783b67d71ad885012689f1
# History | ||
## v5.2.0 2020 May 13 | ||
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation) | ||
## v5.1.0 2020 May 8 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "get-current-line", | ||
"version": "5.1.0", | ||
"version": "5.2.0-next.1589359810.bc7a845a1c90bed0a9783b67d71ad885012689f1", | ||
"description": "Get the current line number of the executing file and method", | ||
@@ -55,3 +55,7 @@ "homepage": "https://github.com/bevry/get-current-line", | ||
"wishlistURL": "https://bevry.me/wishlist", | ||
"travisTLD": "com" | ||
"travisTLD": "com", | ||
"githubUsername": "bevry", | ||
"githubRepository": "get-current-line", | ||
"githubSlug": "bevry/get-current-line", | ||
"npmPackageName": "get-current-line" | ||
} | ||
@@ -65,4 +69,4 @@ }, | ||
"contributors": [ | ||
"Benjamin Lupton <b@lupton.cc>", | ||
"Benjamin Lupton (http://balupton.com)" | ||
"Benjamin Lupton (https://github.com/balupton)", | ||
"Benjamin Lupton <b@lupton.cc>" | ||
], | ||
@@ -118,3 +122,3 @@ "bugs": { | ||
], | ||
"types": "source/index.ts", | ||
"types": "./compiled-types/", | ||
"type": "commonjs", | ||
@@ -125,16 +129,16 @@ "main": "edition-esnext/index.js", | ||
"devDependencies": { | ||
"@bevry/update-contributors": "^1.0.1", | ||
"@typescript-eslint/eslint-plugin": "^2.31.0", | ||
"@typescript-eslint/parser": "^2.31.0", | ||
"assert-helpers": "^6.2.0", | ||
"eslint": "^6.8.0", | ||
"eslint-config-bevry": "^3.4.0", | ||
"@bevry/update-contributors": "^1.5.0", | ||
"@typescript-eslint/eslint-plugin": "^2.33.0", | ||
"@typescript-eslint/parser": "^2.33.0", | ||
"assert-helpers": "^6.4.0", | ||
"eslint": "^7.0.0", | ||
"eslint-config-bevry": "^3.5.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-plugin-prettier": "^3.1.3", | ||
"kava": "^4.4.0", | ||
"kava": "^5.0.0", | ||
"prettier": "^2.0.5", | ||
"projectz": "^1.19.1", | ||
"projectz": "^2.1.0", | ||
"surge": "^0.21.3", | ||
"typedoc": "^0.17.6", | ||
"typescript": "^3.8.3", | ||
"typescript": "^3.9.2", | ||
"valid-directory": "^1.6.0", | ||
@@ -145,11 +149,12 @@ "valid-module": "^1.0.0" | ||
"our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next", | ||
"our:compile": "npm run our:compile:edition-browsers && npm run our:compile:edition-esnext", | ||
"our:compile": "npm run our:compile:edition-browsers && npm run our:compile:edition-esnext && npm run our:compile:types", | ||
"our:compile:edition-browsers": "tsc --module ESNext --target ES2019 --outDir ./edition-browsers --project tsconfig.json && test -d edition-browsers/source && ( mv edition-browsers/source edition-temp && rm -Rf edition-browsers && mv edition-temp edition-browsers ) || true", | ||
"our:compile:edition-esnext": "tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && test -d edition-esnext/source && ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) || true", | ||
"our:compile:types": "tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationDir ./compiled-types/ --declarationMap", | ||
"our:deploy": "echo no need for this project", | ||
"our:meta": "npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz", | ||
"our:meta:contributors": "npx @bevry/update-contributors", | ||
"our:meta:contributors": "update-contributors", | ||
"our:meta:docs": "npm run our:meta:docs:typedoc", | ||
"our:meta:docs:typedoc": "rm -Rf ./docs && npx typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source", | ||
"our:meta:projectz": "npx projectz compile", | ||
"our:meta:docs:typedoc": "rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source", | ||
"our:meta:projectz": "projectz compile", | ||
"our:release": "npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push", | ||
@@ -164,8 +169,7 @@ "our:release:check-changelog": "cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)", | ||
"our:test": "npm run our:verify && npm test", | ||
"our:verify": "npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:module && npm run our:verify:prettier && npm run our:verify:typescript", | ||
"our:verify:directory": "npx valid-directory", | ||
"our:verify:eslint": "npx eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source", | ||
"our:verify:module": "npx valid-module", | ||
"our:verify": "npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:module && npm run our:verify:prettier", | ||
"our:verify:directory": "valid-directory", | ||
"our:verify:eslint": "eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source", | ||
"our:verify:module": "valid-module", | ||
"our:verify:prettier": "prettier --write .", | ||
"our:verify:typescript": "tsc --noEmit --project tsconfig.json", | ||
"test": "node ./edition-esnext/test.js" | ||
@@ -172,0 +176,0 @@ }, |
@@ -70,3 +70,3 @@ <!-- TITLE/ --> | ||
<script type="module"> | ||
import pkg from '//cdn.pika.dev/get-current-line/^5.1.0' | ||
import pkg from '//cdn.pika.dev/get-current-line/^5.2.0' | ||
</script> | ||
@@ -79,3 +79,3 @@ ``` | ||
<script type="module"> | ||
import pkg from '//unpkg.com/get-current-line@^5.1.0' | ||
import pkg from '//unpkg.com/get-current-line@^5.2.0' | ||
</script> | ||
@@ -88,3 +88,3 @@ ``` | ||
<script type="module"> | ||
import pkg from '//dev.jspm.io/get-current-line@5.1.0' | ||
import pkg from '//dev.jspm.io/get-current-line@5.2.0' | ||
</script> | ||
@@ -151,4 +151,4 @@ ``` | ||
<ul><li>Benjamin Lupton</li> | ||
<li><a href="http://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/get-current-line/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/get-current-line">view contributions</a></li></ul> | ||
<ul><li><a href="https://github.com/balupton">Benjamin Lupton</a> — <a href="https://github.com/bevry/get-current-line/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/get-current-line">view contributions</a></li> | ||
<li>Benjamin Lupton</li></ul> | ||
@@ -155,0 +155,0 @@ <a href="https://github.com/bevry/get-current-line/blob/master/CONTRIBUTING.md#files">Discover how you can contribute by heading on over to the <code>CONTRIBUTING.md</code> file.</a> |
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
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
35012
11
485
1