v1.1.7: fix broken link

This commit is contained in:
AJ ONeal 2019-04-16 00:23:36 -06:00
parent a229ecc264
commit a0d1c7845c
2 changed files with 17 additions and 4 deletions

13
package-lock.json generated Normal file
View File

@ -0,0 +1,13 @@
{
"name": "pyconf",
"version": "1.1.7",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"safe-replace": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/safe-replace/-/safe-replace-1.1.0.tgz",
"integrity": "sha512-9/V2E0CDsKs9DWOOwJH7jYpSl9S3N05uyevNjvsnDauBqRowBPOyot1fIvV5N2IuZAbYyvrTXrYFVG0RZInfFw=="
}
}
}

View File

@ -1,6 +1,6 @@
{ {
"name": "pyconf", "name": "pyconf",
"version": "1.1.6", "version": "1.1.7",
"description": "Read and write python config files non-destructively (preserves comments)", "description": "Read and write python config files non-destructively (preserves comments)",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
@ -8,7 +8,7 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://git.coolaj6.com/coolaj86/pyconf.js.git" "url": "https://git.coolaj86.com/coolaj86/pyconf.js.git"
}, },
"keywords": [ "keywords": [
"python", "python",
@ -19,9 +19,9 @@
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)", "author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
"license": "(MIT OR Apache-2.0)", "license": "(MIT OR Apache-2.0)",
"bugs": { "bugs": {
"url": "https://git.coolaj6.com/coolaj86/pyconf.js/issues" "url": "https://git.coolaj86.com/coolaj86/pyconf.js/issues"
}, },
"homepage": "https://git.coolaj6.com/coolaj86/pyconf.js#readme", "homepage": "https://git.coolaj86.com/coolaj86/pyconf.js#readme",
"dependencies": { "dependencies": {
"safe-replace": "^1.0.2" "safe-replace": "^1.0.2"
} }