mirror of https://github.com/embarklabs/embark.git
103 lines
2.3 KiB
JSON
103 lines
2.3 KiB
JSON
{
|
|
"name": "embark-snark",
|
|
"version": "5.0.0-alpha.1",
|
|
"author": "Anthony Laibe",
|
|
"contributors": [
|
|
"Michael Bradley <michaelsbradleyjr@gmail.com> (https://github.com/michaelsbradleyjr/)"
|
|
],
|
|
"description": "Snark plugin for Embark",
|
|
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/plugins/snark#readme",
|
|
"bugs": "https://github.com/embark-framework/embark/issues",
|
|
"keywords": [
|
|
"blockchain",
|
|
"circom",
|
|
"dapps",
|
|
"embark",
|
|
"ethereum",
|
|
"ipfs",
|
|
"serverless",
|
|
"snark",
|
|
"snarkjs",
|
|
"solc",
|
|
"solidity",
|
|
"zksnark"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"directory": "packages/plugins/snark",
|
|
"type": "git",
|
|
"url": "https://github.com/embark-framework/embark.git"
|
|
},
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"embark-collective": {
|
|
"build:node": true
|
|
},
|
|
"scripts": {
|
|
"_build": "npm run solo -- build",
|
|
"ci": "npm run qa",
|
|
"clean": "npm run reset",
|
|
"lint": "eslint src/ test/",
|
|
"qa": "npm-run-all lint _build test",
|
|
"reset": "npx rimraf coverage dist embark-*.tgz package",
|
|
"solo": "embark-solo",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime-corejs3": "7.7.4",
|
|
"circom": "0.0.31",
|
|
"core-js": "3.3.5",
|
|
"find-up": "4.1.0",
|
|
"glob": "7.1.4",
|
|
"snarkjs": "0.1.19"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.7.4",
|
|
"babel-eslint": "10.0.3",
|
|
"babel-jest": "24.9.0",
|
|
"embark-solo": "^5.0.0-alpha.0",
|
|
"eslint": "6.2.2",
|
|
"eslint-config-prettier": "6.1.0",
|
|
"eslint-plugin-jest": "22.5.1",
|
|
"eslint-plugin-prettier": "3.1.0",
|
|
"jest": "24.9.0",
|
|
"lodash.clonedeep": "4.5.0",
|
|
"npm-run-all": "4.1.5",
|
|
"prettier": "1.18.2",
|
|
"rimraf": "3.0.0"
|
|
},
|
|
"eslintConfig": {
|
|
"env": {
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:jest/recommended",
|
|
"plugin:jest/style",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"parser": "babel-eslint"
|
|
},
|
|
"jest": {
|
|
"collectCoverage": true,
|
|
"testEnvironment": "node",
|
|
"testMatch": [
|
|
"**/test/**/*.js"
|
|
],
|
|
"transform": {
|
|
"\\.js$": [
|
|
"babel-jest",
|
|
{
|
|
"rootMode": "upward"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true
|
|
}
|
|
}
|