diff options
| -rw-r--r-- | package-lock.json | 20 | ||||
| -rw-r--r-- | package.json | 40 |
2 files changed, 30 insertions, 30 deletions
diff --git a/package-lock.json b/package-lock.json index f457708..f890182 100644 --- a/package-lock.json +++ b/package-lock.json @@ -903,14 +903,14 @@ } }, "node_modules/get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", + "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==", "dev": true, "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", - "has-symbols": "^1.0.1" + "has-symbols": "^1.0.3" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -1817,7 +1817,7 @@ "node_modules/strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, "engines": { "node": ">=4" @@ -2706,14 +2706,14 @@ "dev": true }, "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", + "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==", "dev": true, "requires": { "function-bind": "^1.1.1", "has": "^1.0.3", - "has-symbols": "^1.0.1" + "has-symbols": "^1.0.3" } }, "get-symbol-description": { @@ -3351,7 +3351,7 @@ "strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true }, "strip-json-comments": { diff --git a/package.json b/package.json index 2e9237e..d5adc35 100644 --- a/package.json +++ b/package.json @@ -1,37 +1,37 @@ { - "author": "Serghei Iakovlev", - "bugs": { - "url": "https://github.com/sergeyklay/gohugo-theme-ed/issues" - }, - "dependencies": {}, + "name": "ed", + "version": "0.4.0", + "private": true, "description": "Ed theme for minimal editions, based on Alex Gil theme", - "devDependencies": { - "editorconfig-checker": "^4.0.2", - "eslint": "^8.16.0", - "eslint-config-airbnb-base": "^15.0.0", - "eslint-plugin-import": "^2.25.4", - "eslint-plugin-node": "^11.1.0" - }, - "homepage": "https://github.com/sergeyklay/gohugo-theme-ed#readme", "keywords": [ "hugo", "theme", "minimal" ], - "license": "MIT", - "main": "index.js", - "name": "ed", - "private": true, + "homepage": "https://github.com/sergeyklay/gohugo-theme-ed#readme", + "bugs": { + "url": "https://github.com/sergeyklay/gohugo-theme-ed/issues" + }, "repository": { "type": "git", "url": "git+https://github.com/sergeyklay/gohugo-theme-ed.git" }, + "license": "MIT", + "author": "Serghei Iakovlev", + "main": "index.js", "scripts": { "build": "hugo --source=exampleSite --gc --verbose --minify --destination ../public", - "server": "hugo server --source=exampleSite --disableFastRender", + "lint": "npm run lint:js && npm run lint:editorconfig", "lint:editorconfig": "editorconfig-checker", "lint:js": "eslint static/js/*.js", - "lint": "npm run lint:js && npm run lint:editorconfig" + "server": "hugo server --source=exampleSite --disableFastRender" }, - "version": "0.4.0" + "dependencies": {}, + "devDependencies": { + "editorconfig-checker": "^4.0.2", + "eslint": "^8.16.0", + "eslint-config-airbnb-base": "^15.0.0", + "eslint-plugin-import": "^2.25.4", + "eslint-plugin-node": "^11.1.0" + } } |
