Skip to content

Commit

Permalink
🐛 Fix eslint-config version requirement
Browse files Browse the repository at this point in the history
(3.2.0 does not exist yet so go with ^3.0.0)
  • Loading branch information
Valeri Buchinski committed Feb 9, 2024
1 parent 5399cd0 commit 72d714d
Showing 1 changed file with 72 additions and 72 deletions.
144 changes: 72 additions & 72 deletions packages/signer/package.json
Original file line number Diff line number Diff line change
@@ -1,74 +1,74 @@
{
"name": "@signpdf/signer",
"version": "3.2.0",
"description": "Signer base implementations.",
"repository": {
"type": "git",
"url": "https://github.com/vbuch/node-signpdf"
},
"license": "MIT",
"keywords": [
"sign",
"pdf",
"node",
"nodejs",
"esign",
"adobe",
"ppklite",
"sign detached",
"pkcs7",
"pkcs#7",
"pades",
"digital signature"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=12",
"yarn": ">=1.22.18"
},
"scripts": {
"test": "jest",
"build": "rm -rf ./dist/* & babel ./src -d ./dist --ignore \"**/*.test.js\" & tsc",
"lint": "eslint -c .eslintrc --ignore-path ../../.eslintignore ./"
},
"dependencies": {
"@signpdf/utils": "^3.2.0"
},
"peerDependencies": {
"asn1js": "^3.0.5",
"pkijs": "^3.0.15"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.4.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/node": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.4.2",
"@signpdf/eslint-config": "^3.2.0",
"@signpdf/internal-utils": "^3.0.0",
"@types/node": ">=12.0.0",
"assertion-error": "^1.1.0",
"babel-jest": "^27.3.1",
"babel-plugin-module-resolver": "^3.1.1",
"coveralls": "^3.0.2",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"husky": "^7.0.4",
"jest": "^27.3.1",
"asn1js": "^3.0.5",
"pkijs": "^3.0.15",
"pdfkit": "~0.10.0",
"typescript": "^5.2.2"
},
"gitHead": "5d5ec00c21e072613acb9776c7c6ac7697314955"
"name": "@signpdf/signer",
"version": "3.2.0",
"description": "Signer base implementations.",
"repository": {
"type": "git",
"url": "https://github.com/vbuch/node-signpdf"
},
"license": "MIT",
"keywords": [
"sign",
"pdf",
"node",
"nodejs",
"esign",
"adobe",
"ppklite",
"sign detached",
"pkcs7",
"pkcs#7",
"pades",
"digital signature"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=12",
"yarn": ">=1.22.18"
},
"scripts": {
"test": "jest",
"build": "rm -rf ./dist/* & babel ./src -d ./dist --ignore \"**/*.test.js\" & tsc",
"lint": "eslint -c .eslintrc --ignore-path ../../.eslintignore ./"
},
"dependencies": {
"@signpdf/utils": "^3.2.0"
},
"peerDependencies": {
"asn1js": "^3.0.5",
"pkijs": "^3.0.15"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.4.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/node": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.4.2",
"@signpdf/eslint-config": "^3.0.0",
"@signpdf/internal-utils": "^3.0.0",
"@types/node": ">=12.0.0",
"assertion-error": "^1.1.0",
"babel-jest": "^27.3.1",
"babel-plugin-module-resolver": "^3.1.1",
"coveralls": "^3.0.2",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"husky": "^7.0.4",
"jest": "^27.3.1",
"asn1js": "^3.0.5",
"pkijs": "^3.0.15",
"pdfkit": "~0.10.0",
"typescript": "^5.2.2"
},
"gitHead": "5d5ec00c21e072613acb9776c7c6ac7697314955"
}

0 comments on commit 72d714d

Please sign in to comment.