You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

files-from-path

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

files-from-path - npm Package Compare versions

Comparing version

to
0.1.2

cjs/src/index.js

22

package.json
{
"name": "files-from-path",
"version": "0.1.1",
"version": "0.1.2",
"description": "Match provided glob paths to file objects with readable stream",
"main": "src/index.js",
"main": "./cjs/src/index.js",
"types": "./types/index.d.ts",

@@ -14,11 +14,5 @@ "typesVersions": {

},
"files": [
"src",
"dist"
],
"type": "module",
"author": "vasco-santos",
"license": "(Apache-2.0 AND MIT)",
"scripts": {
"prepare": "npm run build",
"build": "npm run build:js && npm run build:types",

@@ -51,3 +45,13 @@ "build:js": "ipjs build --main && npm run build:copy",

"typescript": "^4.3.5"
},
"browser": {
".": "./cjs/src/index.js"
},
"exports": {
".": {
"browser": "./esm/src/index.js",
"require": "./cjs/src/index.js",
"import": "./esm/src/index.js"
}
}
}
}