ipfs-unixfs
Advanced tools
Comparing version 6.0.7-rc.5 to 6.0.7
198
package.json
{ | ||
"name": "ipfs-unixfs", | ||
"version": "6.0.7-rc.5+273a141", | ||
"version": "6.0.7", | ||
"description": "JavaScript implementation of IPFS' unixfs (a Unix FileSystem representation on top of a MerkleDAG)", | ||
"leadMaintainer": "Alex Potsides <alex.potsides@protocol.ai>", | ||
"main": "./cjs/src/index.js", | ||
"browser": { | ||
".": "./cjs/src/index.js" | ||
"license": "Apache-2.0 OR MIT", | ||
"homepage": "https://github.com/ipfs/js-ipfs-unixfs/tree/master/packages/ipfs-unixfs#readme", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/ipfs/js-ipfs-unixfs.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/ipfs/js-ipfs-unixfs/issues" | ||
}, | ||
"keywords": [ | ||
"IPFS" | ||
], | ||
"engines": { | ||
"node": ">=16.0.0", | ||
"npm": ">=7.0.0" | ||
}, | ||
"types": "types/src/index.d.ts", | ||
"typesVersions": { | ||
"*": { | ||
"*": [ | ||
"types/*", | ||
"types/src/*" | ||
], | ||
"types/*": [ | ||
"types/*", | ||
"types/src/*" | ||
] | ||
} | ||
}, | ||
"files": [ | ||
"*", | ||
"!**/*.tsbuildinfo", | ||
"!**/browser-test", | ||
"!**/node-test" | ||
], | ||
"exports": { | ||
".": { | ||
"browser": "./esm/src/index.js", | ||
"require": "./cjs/src/index.js", | ||
"import": "./esm/src/index.js" | ||
} | ||
}, | ||
"eslintConfig": { | ||
"extends": "ipfs", | ||
"parserOptions": { | ||
"sourceType": "module" | ||
}, | ||
"ignorePatterns": [ | ||
"src/unixfs.d.ts" | ||
] | ||
}, | ||
"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", | ||
{ | ||
"pkgRoot": "dist" | ||
} | ||
], | ||
"@semantic-release/github", | ||
"@semantic-release/git" | ||
] | ||
}, | ||
"scripts": { | ||
@@ -16,2 +148,5 @@ "prepare": "aegir build --no-bundle && cp -R types dist", | ||
"test": "aegir test", | ||
"test:node": "aegir test -t node --cov", | ||
"test:chrome": "aegir test -t browser --cov", | ||
"test:firefox": "aegir test -t browser -- --browser firefox", | ||
"build": "aegir build && cp -R types dist", | ||
@@ -21,26 +156,12 @@ "clean": "rimraf ./dist", | ||
"coverage": "nyc -s aegir test -t node && nyc report --reporter=html", | ||
"depcheck": "aegir dep-check -i mkdirp -i @types/mocha -i nyc -i npm-run-all -i copy -i util" | ||
"dep-check": "aegir dep-check -i mkdirp -i @types/mocha -i nyc -i npm-run-all -i copy -i util", | ||
"release": "semantic-release" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/ipfs/js-ipfs-unixfs.git" | ||
"dependencies": { | ||
"err-code": "^3.0.1", | ||
"protobufjs": "^6.10.2" | ||
}, | ||
"keywords": [ | ||
"IPFS" | ||
], | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/ipfs/js-ipfs-unixfs/issues" | ||
}, | ||
"engines": { | ||
"node": ">=14.0.0", | ||
"npm": ">=6.0.0" | ||
}, | ||
"homepage": "https://github.com/ipfs/js-ipfs-unixfs#readme", | ||
"publishConfig": { | ||
"directory": "dist" | ||
}, | ||
"devDependencies": { | ||
"@types/mocha": "^8.2.1", | ||
"aegir": "^35.0.1", | ||
"aegir": "^36.2.3", | ||
"copy": "^0.3.2", | ||
@@ -53,24 +174,9 @@ "mkdirp": "^1.0.4", | ||
}, | ||
"dependencies": { | ||
"err-code": "^3.0.1", | ||
"protobufjs": "^6.10.2" | ||
"browser": { | ||
".": "./cjs/src/index.js" | ||
}, | ||
"types": "types/src/index.d.ts", | ||
"eslintConfig": { | ||
"extends": "ipfs", | ||
"parserOptions": { | ||
"sourceType": "module" | ||
}, | ||
"ignorePatterns": [ | ||
"src/unixfs.d.ts" | ||
] | ||
}, | ||
"gitHead": "273a141b5ee3805bd0ef2dc8ed7870f8c6c8a820", | ||
"exports": { | ||
".": { | ||
"browser": "./esm/src/index.js", | ||
"require": "./cjs/src/index.js", | ||
"import": "./esm/src/index.js" | ||
} | ||
"main": "./cjs/src/index.js", | ||
"publishConfig": { | ||
"directory": "dist" | ||
} | ||
} | ||
} |
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
Mixed license
License(Experimental) Package contains multiple licenses.
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
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
108428
26
1937
0
0
2
80