mirror of https://github.com/embarklabs/embark.git
135 lines
3.1 KiB
JSON
135 lines
3.1 KiB
JSON
{
|
|
"name": "embark-snark",
|
|
"version": "6.0.0",
|
|
"author": "Anthony Laibe",
|
|
"contributors": [
|
|
"Michael Bradley <michaelsbradleyjr@gmail.com> (https://github.com/michaelsbradleyjr/)",
|
|
"Eric Mastro <eric.mastro@gmail.com> (https://github.com/emizzle/)"
|
|
],
|
|
"description": "Snark plugin for Embark",
|
|
"homepage": "https://github.com/embarklabs/embark/tree/master/packages/plugins/snark#readme",
|
|
"bugs": "https://github.com/embarklabs/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/embarklabs/embark.git"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"index.js"
|
|
],
|
|
"main": "./index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"embark-collective": {
|
|
"build:node": true,
|
|
"typecheck": true
|
|
},
|
|
"scripts": {
|
|
"_build": "npm run solo -- build",
|
|
"_typecheck": "npm run solo -- typecheck",
|
|
"ci": "npm run qa",
|
|
"clean": "npm run reset",
|
|
"lint": "npm-run-all lint:*",
|
|
"lint:js": "eslint test/",
|
|
"lint:ts": "tslint -c tslint.json \"src/**/*.ts\"",
|
|
"qa": "npm-run-all lint _typecheck _build test",
|
|
"reset": "npx rimraf coverage dist embark-*.tgz package",
|
|
"solo": "embark-solo",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime-corejs3": "7.8.4",
|
|
"circom": "0.0.35",
|
|
"core-js": "3.4.3",
|
|
"embark-core": "^6.0.0",
|
|
"embark-logger": "^6.0.0",
|
|
"embark-utils": "^6.0.0",
|
|
"embarkjs-snark": "^6.0.0",
|
|
"find-up": "4.1.0",
|
|
"glob": "7.1.4",
|
|
"node-object-hash": "2.0.0",
|
|
"snarkjs": "0.1.20"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.8.6",
|
|
"@typescript-eslint/parser": "2.20.0",
|
|
"babel-eslint": "10.0.3",
|
|
"babel-jest": "24.9.0",
|
|
"embark-solo": "^6.0.0",
|
|
"eslint": "6.8.0",
|
|
"eslint-config-prettier": "6.1.0",
|
|
"eslint-plugin-import": "2.20.1",
|
|
"eslint-plugin-jest": "23.8.1",
|
|
"eslint-plugin-prettier": "3.1.0",
|
|
"jest": "25.1.0",
|
|
"npm-run-all": "4.1.5",
|
|
"prettier": "1.18.2",
|
|
"rimraf": "3.0.0",
|
|
"tslint": "5.20.1"
|
|
},
|
|
"eslintConfig": {
|
|
"env": {
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:import/typescript",
|
|
"plugin:jest/recommended",
|
|
"plugin:jest/style",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"parser": "babel-eslint",
|
|
"plugins": [
|
|
"import"
|
|
],
|
|
"rules": {
|
|
"import/no-extraneous-dependencies": "error",
|
|
"import/no-unresolved": [
|
|
2,
|
|
{
|
|
"commonjs": true
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"jest": {
|
|
"collectCoverage": true,
|
|
"testEnvironment": "node",
|
|
"testMatch": [
|
|
"**/test/**/*.js"
|
|
],
|
|
"transform": {
|
|
"\\.(js|ts)$": [
|
|
"babel-jest",
|
|
{
|
|
"rootMode": "upward"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true
|
|
},
|
|
"engines": {
|
|
"node": ">=10.17.0",
|
|
"npm": ">=6.11.3",
|
|
"yarn": ">=1.19.1"
|
|
}
|
|
}
|