asynciterator
Advanced tools
Comparing version 3.0.0-beta.0 to 3.0.0-beta.1
{ | ||
"name": "asynciterator", | ||
"version": "3.0.0-beta.0", | ||
"version": "3.0.0-beta.1", | ||
"description": "An asynchronous iterator library for advanced object pipelines.", | ||
@@ -9,17 +9,24 @@ "author": "Ruben Verborgh <ruben@verborgh.org>", | ||
"exports": { | ||
"import": "./asynciterator.js", | ||
"import": "./asynciterator.mjs", | ||
"require": "./asynciterator.cjs" | ||
}, | ||
"module": "./asynciterator.js", | ||
"types": "./asynciterator.d.ts", | ||
"module": "./asynciterator.mjs", | ||
"sideEffects": false, | ||
"files": [ | ||
"asynciterator.js", | ||
"asynciterator.cjs" | ||
"asynciterator.mjs", | ||
"asynciterator.cjs", | ||
"asynciterator.d.ts" | ||
], | ||
"scripts": { | ||
"build": "babel asynciterator.js > asynciterator.cjs", | ||
"build": "npm run build:module && npm run build:commonjs && npm run build:types", | ||
"build:module": "tsc --module es2015 && mv asynciterator.js asynciterator.mjs", | ||
"build:commonjs": "tsc --module commonjs && mv asynciterator.js asynciterator.cjs", | ||
"build:types": "tsc -d && rm asynciterator.js", | ||
"prepare": "npm run build", | ||
"test": "c8 mocha", | ||
"lint": "eslint *.js test", | ||
"docs": "jsdoc -c jsdoc.json README.md *.js" | ||
"test": "npm run build:module && npm run mocha", | ||
"mocha": "c8 mocha", | ||
"lint": "eslint asynciterator.ts test", | ||
"docs": "npm run build:module && npm run jsdoc", | ||
"jsdoc": "jsdoc -c jsdoc.json" | ||
}, | ||
@@ -36,5 +43,8 @@ "license": "MIT", | ||
"@babel/register": "^7.10.1", | ||
"@types/node": "^14.0.13", | ||
"@typescript-eslint/eslint-plugin": "^3.2.0", | ||
"@typescript-eslint/parser": "^3.2.0", | ||
"c8": "^7.2.0", | ||
"chai": "^4.2.0", | ||
"eslint": "^5.15.1", | ||
"eslint": "^5.16.0", | ||
"husky": "^4.2.5", | ||
@@ -45,4 +55,5 @@ "jaguarjs-jsdoc": "^1.1.0", | ||
"sinon": "^7.2.7", | ||
"sinon-chai": "^3.3.0" | ||
"sinon-chai": "^3.3.0", | ||
"typescript": "^3.9.5" | ||
} | ||
} |
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
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
153171
6
3555
17