{ "name": "zokrates-js", "main": "index.js", "author": "Darko Macesic ", "version": "1.0.23", "keywords": [ "zokrates", "wasm-bindgen", "zksnarks" ], "license": "GPLv3", "files": [ "node", "pkg", "index.js", "index.d.ts", "wrapper.js", "stdlib.json", "README.md" ], "types": "index.d.ts", "scripts": { "wasm-pack": "wasm-pack build --out-name index --release", "setup": "npm install && gulp stdlib", "prebuild": "npm run setup", "build": "npm run build:bundler && npm run build:node", "build:bundler": "rimraf pkg && npm run wasm-pack -- --target bundler && npm run clean-pkg", "build:node": "rimraf node/pkg && npm run wasm-pack -- --target nodejs -d node/pkg && npm run clean-node-pkg", "clean-pkg": "find pkg/* | grep -P \"^.*\\.(md|d\\.ts)$\" | xargs rm", "clean-node-pkg": "find node/pkg/* | grep -P \"^.*\\.(md|d\\.ts)$\" | xargs rm", "pretest": "npm run setup && npm run build:node", "test": "mocha --require esm --recursive tests" }, "devDependencies": { "dree": "^2.4.14", "esm": "^3.2.25", "gulp": "^4.0.2", "gulp-cli": "^2.2.0", "mocha": "^7.1.1", "rimraf": "^3.0.2", "serve": "^11.3.0", "text-encoding": "^0.7.0" }, "dependencies": {} }