fix: Use the recommended property to specify repository URL (#10665) [ci-skip]

Use recommended by npm property to specify repository URL
https://docs.npmjs.com/files/package.json#repository

Otherwise, it breaks some tools which relay on this convention for example "nlf" package
https://github.com/iandotkelly/nlf/blob/master/lib/nlf.js#L284-L285
This commit is contained in:
Maksim Ryzhikov 2019-11-06 15:34:09 +03:00 committed by Huáng Jùnliàng
parent 2cd5ad0c80
commit 3ab035bab6

View File

@ -6,7 +6,7 @@
"description": "Compile ESNext Regular Expressions to ES5",
"repository": {
"type": "git",
"repository": "https://github.com/babel/babel",
"url": "https://github.com/babel/babel",
"directory": "packages/babel-helper-create-regexp-features-plugin"
},
"main": "lib/index.js",