This repository was archived by the owner on Sep 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "embark-snark",
"version": "4.1.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-snark#readme",
"bugs": "https://github.com/embark-framework/embark-snark/issues",
"keywords": [
"snark",
"circom",
"ethereum",
"embark"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/embark-framework/embark-snark.git"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "cross-env BABEL_ENV=node babel src --extensions \".js\" --out-dir dist --source-maps",
"clean": "npx rimraf coverage dist package embark-snark-*.tgz",
"lint": "eslint babel.config.js src/ test/",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm-run-all clean lint test build",
"test": "jest",
"watch": "npm run build -- --verbose --watch"
},
"dependencies": {
"@babel/runtime-corejs2": "7.6.0",
"circom": "0.0.31",
"find-up": "4.1.0",
"glob": "7.1.4",
"snarkjs": "0.1.19"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-transform-runtime": "7.5.5",
"@babel/preset-env": "7.5.5",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"cross-env": "5.2.0",
"eslint": "6.2.2",
"eslint-config-prettier": "6.1.0",
"eslint-plugin-jest": "22.5.1",
"eslint-plugin-prettier": "3.1.0",
"husky": "3.0.4",
"jest": "24.9.0",
"lint-staged": "9.2.5",
"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"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.js"
]
},
"lint-staged": {
"{src,test}/**/*.js": ["eslint --fix", "git add"]
},
"prettier": {
"singleQuote": true
}
}