Socket
Socket
Sign inDemoInstall

r1csfile

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

r1csfile - npm Package Compare versions

Comparing version 0.0.31 to 0.0.32

8

package.json

@@ -8,3 +8,3 @@ {

},
"version": "0.0.31",
"version": "0.0.32",
"description": "r1cs file format parser",

@@ -42,10 +42,8 @@ "main": "./build/main.cjs",

"fastfile": "0.0.19",
"ffjavascript": "0.2.34"
"ffjavascript": "0.2.35"
},
"devDependencies": {
"eslint": "^6.8.0",
"rollup": "^2.20.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
"rollup": "^2.20.0"
}
}

@@ -1,4 +0,6 @@

import resolve from "rollup-plugin-node-resolve";
import commonJS from "rollup-plugin-commonjs";
import fs from "fs";
import { builtinModules as builtin } from "module";
const pkg = JSON.parse(fs.readFileSync("./package.json"));
export default {

@@ -10,10 +12,6 @@ input: "./src/r1csfile.js",

},
external: ["fastfile", "ffjavascript", "@iden3/bigarray"],
plugins: [
resolve({ preferBuiltins: true }),
commonJS({
preserveSymlinks: true
}),
external: [
...Object.keys(pkg.dependencies),
...builtin,
]
};

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc