@libp2p/crypto
Advanced tools
Comparing version 0.22.2 to 0.22.3
106
package.json
{ | ||
"name": "@libp2p/crypto", | ||
"version": "0.22.2", | ||
"version": "0.22.3", | ||
"description": "Crypto primitives for libp2p", | ||
@@ -40,14 +40,17 @@ "type": "module", | ||
"scripts": { | ||
"lint": "aegir lint", | ||
"dep-check": "aegir dep-check dist/src/**/*.js dist/test/**/*.js", | ||
"build": "tsc", | ||
"pretest": "npm run build", | ||
"test": "aegir test -f ./dist/test/**/*.js", | ||
"test:browser": "aegir test -t browser -f ./dist/test/**/*.js", | ||
"test:node": "aegir test -t node -f ./dist/test/**/*.js", | ||
"test:electron-main": "aegir test -t electron-main -f ./dist/test/**/*.js", | ||
"lint": "aegir ts -p check && aegir lint", | ||
"build": "tsc", | ||
"test:chrome": "npm run test -- -t browser", | ||
"test:chrome-webworker": "npm run test -- -t webworker", | ||
"test:firefox": "npm run test -- -t browser -- --browser firefox", | ||
"test:firefox-webworker": "npm run test -- -t webworker -- --browser firefox", | ||
"test:node": "npm run test -- -t node --cov", | ||
"test:electron-main": "npm run test -- -t electron-main", | ||
"release": "semantic-release", | ||
"build:proto": "npm run build:proto:js && npm run build:proto:types", | ||
"build:proto:js": "pbjs -t static-module -w es6 --es6 -r libp2p-crypto-keys --force-number --no-verify --no-delimited --no-create --no-beautify --no-defaults --lint eslint-disable -o src/keys/keys.js ./src/keys/keys.proto", | ||
"build:proto:types": "pbts -o src/keys/keys.d.ts src/keys/keys.js", | ||
"dep-check": "aegir dep-check dist/src/**/*.js dist/test/**/*.js", | ||
"release": "semantic-release" | ||
"build:proto:types": "pbts -o src/keys/keys.d.ts src/keys/keys.js" | ||
}, | ||
@@ -68,3 +71,3 @@ "browser": { | ||
], | ||
"license": "MIT", | ||
"license": "Apache-2.0 OR MIT", | ||
"dependencies": { | ||
@@ -98,3 +101,84 @@ "@noble/ed25519": "^1.3.3", | ||
}, | ||
"homepage": "https://github.com/libp2p/js-libp2p-crypto" | ||
"homepage": "https://github.com/libp2p/js-libp2p-crypto", | ||
"release": { | ||
"branches": [ | ||
"master" | ||
], | ||
"plugins": [ | ||
[ | ||
"@semantic-release/commit-analyzer", | ||
{ | ||
"preset": "conventionalcommits", | ||
"releaseRules": [ | ||
{ | ||
"breaking": true, | ||
"release": "major" | ||
}, | ||
{ | ||
"revert": true, | ||
"release": "patch" | ||
}, | ||
{ | ||
"type": "feat", | ||
"release": "minor" | ||
}, | ||
{ | ||
"type": "fix", | ||
"release": "patch" | ||
}, | ||
{ | ||
"type": "chore", | ||
"release": "patch" | ||
}, | ||
{ | ||
"type": "docs", | ||
"release": "patch" | ||
}, | ||
{ | ||
"type": "test", | ||
"release": "patch" | ||
}, | ||
{ | ||
"scope": "no-release", | ||
"release": false | ||
} | ||
] | ||
} | ||
], | ||
[ | ||
"@semantic-release/release-notes-generator", | ||
{ | ||
"preset": "conventionalcommits", | ||
"presetConfig": { | ||
"types": [ | ||
{ | ||
"type": "feat", | ||
"section": "Features" | ||
}, | ||
{ | ||
"type": "fix", | ||
"section": "Bug Fixes" | ||
}, | ||
{ | ||
"type": "chore", | ||
"section": "Trivial Changes" | ||
}, | ||
{ | ||
"type": "docs", | ||
"section": "Trivial Changes" | ||
}, | ||
{ | ||
"type": "test", | ||
"section": "Tests" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"@semantic-release/changelog", | ||
"@semantic-release/npm", | ||
"@semantic-release/github", | ||
"@semantic-release/git" | ||
] | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
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
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
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
238009
1
80