uint8arrays
Advanced tools
Comparing version 2.1.9 to 2.1.10
17
index.js
@@ -1,1 +0,16 @@ | ||
module.exports = require('./cjs/src/index.js') | ||
'use strict' | ||
const compare = require('./compare') | ||
const concat = require('./concat') | ||
const equals = require('./equals') | ||
const fromString = require('./from-string') | ||
const toString = require('./to-string') | ||
const xor = require('./xor') | ||
module.exports = { | ||
compare, | ||
concat, | ||
equals, | ||
fromString, | ||
toString, | ||
xor | ||
} |
{ | ||
"name": "uint8arrays", | ||
"version": "2.1.9", | ||
"version": "2.1.10", | ||
"description": "Utility functions to make dealing with Uint8Arrays easier", | ||
"main": "./cjs/src/index.js", | ||
"main": "index.js", | ||
"author": "Alex Potsides <alex@achingbrain.net>", | ||
"homepage": "https://github.com/achingbrain/uint8arrays", | ||
"bugs": "https://github.com/achingbrain/uint8arrays/issues", | ||
"types": "types/index.d.ts", | ||
"types": "dist/index.d.ts", | ||
"typesVersions": { | ||
"*": { | ||
"*": [ | ||
"dist/*" | ||
], | ||
"index.js": [ | ||
"dist/index.d.ts" | ||
] | ||
} | ||
}, | ||
"files": [ | ||
"compare.js", | ||
"concat.js", | ||
"equals.js", | ||
"from-string.js", | ||
"index.js", | ||
"to-string.js", | ||
"xor.js", | ||
"dist/**/*.ts", | ||
"dist/**/*.map", | ||
"dist/**/*.js", | ||
"util/*.js" | ||
], | ||
"repository": { | ||
@@ -15,2 +38,3 @@ "type": "git", | ||
"scripts": { | ||
"prepare": "aegir build --no-bundle", | ||
"test": "aegir test", | ||
@@ -28,3 +52,3 @@ "lint": "aegir ts -p check && aegir lint", | ||
"devDependencies": { | ||
"aegir": "https://gitpkg.now.sh/ipfs/aegir?feat/build-esm-modules-follow-up", | ||
"aegir": "^34.0.2", | ||
"util": "^0.12.4" | ||
@@ -34,5 +58,2 @@ }, | ||
"extends": "ipfs", | ||
"parserOptions": { | ||
"sourceType": "module" | ||
}, | ||
"ignorePatterns": [ | ||
@@ -42,49 +63,2 @@ "!.aegir.js" | ||
}, | ||
"typesVersions": { | ||
"*": { | ||
"*": [ | ||
"types/*" | ||
], | ||
"types/*": [ | ||
"types/*" | ||
] | ||
} | ||
}, | ||
"exports": { | ||
".": { | ||
"browser": "./esm/src/index.js", | ||
"require": "./cjs/src/index.js", | ||
"import": "./esm/src/index.js" | ||
}, | ||
"./compare": { | ||
"browser": "./esm/src/compare.js", | ||
"require": "./cjs/src/compare.js", | ||
"import": "./esm/src/compare.js" | ||
}, | ||
"./concat": { | ||
"browser": "./esm/src/concat.js", | ||
"require": "./cjs/src/concat.js", | ||
"import": "./esm/src/concat.js" | ||
}, | ||
"./equals": { | ||
"browser": "./esm/src/equals.js", | ||
"require": "./cjs/src/equals.js", | ||
"import": "./esm/src/equals.js" | ||
}, | ||
"./fromString": { | ||
"browser": "./esm/src/from-string.js", | ||
"require": "./cjs/src/from-string.js", | ||
"import": "./esm/src/from-string.js" | ||
}, | ||
"./toString": { | ||
"browser": "./esm/src/to-string.js", | ||
"require": "./cjs/src/to-string.js", | ||
"import": "./esm/src/to-string.js" | ||
}, | ||
"./xor": { | ||
"browser": "./esm/src/xor.js", | ||
"require": "./cjs/src/xor.js", | ||
"import": "./esm/src/xor.js" | ||
} | ||
}, | ||
"contributors": [ | ||
@@ -95,13 +69,5 @@ "achingbrain <alex@achingbrain.net>", | ||
"Hugo Dias <hugomrdias@gmail.com>", | ||
"Mircea Nistor <mirceanis@gmail.com>", | ||
"Rafael Ramalho <rafazelramalho19@gmail.com>" | ||
], | ||
"browser": { | ||
".": "./cjs/src/index.js", | ||
"./compare": "./cjs/src/compare.js", | ||
"./concat": "./cjs/src/concat.js", | ||
"./equals": "./cjs/src/equals.js", | ||
"./fromString": "./cjs/src/from-string.js", | ||
"./toString": "./cjs/src/to-string.js", | ||
"./xor": "./cjs/src/xor.js" | ||
} | ||
] | ||
} |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
20994
331