embark/packages/embarkjs/snark/package.json
2020-04-27 16:04:43 -05:00

81 lines
2.0 KiB
JSON

{
"name": "embarkjs-snark",
"version": "6.0.0",
"author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [
"Eric Mastro <eric.mastro@gmail.com> (https://github.com/emizzle/)"
],
"description": "zkSnarks plugin for embarkjs",
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/embarkjs/snark#readme",
"bugs": "https://github.com/embark-framework/embark/issues",
"keywords": [
"blockchain",
"dapps",
"ethereum",
"zksnarks",
"snarks",
"zero knowledge"
],
"license": "MIT",
"repository": {
"directory": "packages/embarkjs/snark",
"type": "git",
"url": "https://github.com/embark-framework/embark.git"
},
"main": "./index.js",
"types": "./dist/index.d.ts",
"browser": {
"./dist/node/index.js": "./dist/browser/index.js",
"./dist/browser/embarkjs-snark.js": "./dist/browser/browser/embarkjs-snark.js"
},
"browserslist": [
"last 1 version",
"not dead",
"> 0.2%"
],
"files": [
"dist"
],
"embark-collective": {
"build:browser": true,
"build:node": true,
"typecheck": {
"compilerOptions": {
"module": "ESNext"
}
}
},
"scripts": {
"_build": "npm run solo -- build",
"_typecheck": "npm run solo -- typecheck",
"ci": "npm run qa",
"clean": "npm run reset",
"lint": "tslint -c tslint.json \"src/**/*.ts\"",
"qa": "npm-run-all lint _typecheck _build",
"reset": "npx rimraf coverage dist embarkjs-*.tgz package",
"solo": "embark-solo"
},
"dependencies": {
"@babel/runtime-corejs3": "7.8.4",
"core-js": "3.6.4",
"embark-core": "^6.0.0",
"embarkjs": "^6.0.0",
"fs-extra": "8.1.0",
"snarkjs": "0.1.20"
},
"devDependencies": {
"embark-solo": "^6.0.0",
"eslint": "6.2.2",
"lodash.clonedeep": "4.5.0",
"npm-run-all": "4.1.5",
"rimraf": "3.0.0",
"tslint": "5.20.1",
"typescript": "3.7.2"
},
"engines": {
"node": ">=10.17.0",
"npm": ">=6.11.3",
"yarn": ">=1.19.1"
}
}