forked from o1-labs/zkapp-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.71 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
{
"name": "zkapp-cli",
"version": "0.5.3",
"description": "CLI to create a zkApp (\"zero-knowledge app\") for Mina Protocol.",
"keywords": [
"cli",
"mina",
"zkapp",
"dapp"
],
"license": "Apache-2.0",
"author": "O(1) Labs",
"bin": {
"zk": "./src/bin/index.js",
"zkapp": "./src/bin/index.js",
"zkapp-cli": "./src/bin/index.js"
},
"scripts": {
"coverage": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --coverage",
"format": "prettier --write --ignore-unknown **/*",
"postinstall": "node src/postinstall",
"prepare": "husky install",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --silent",
"testw": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --watch --silent"
},
"lint-staged": {
"**/*": [
"eslint -c .eslintrc.js src/* --fix",
"prettier --write --ignore-unknown"
]
},
"jest": {
"testMatch": [
"<rootDir>/src/**/*.test.js"
]
},
"dependencies": {
"chalk": "^4.1.2",
"enquirer": "^2.3.6",
"envinfo": "^7.8.1",
"fast-glob": "^3.2.11",
"find-npm-prefix": "^1.0.2",
"fs-extra": "^10.1.0",
"gittar": "^0.1.1",
"mina-signer": "^1.1.0",
"ora": "^5.4.1",
"shelljs": "^0.8.5",
"snarkyjs": "^0.7.3",
"table": "^6.8.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-plugin-snarkyjs": "^0.3.0",
"husky": "^7.0.2",
"jest": "^27.2.1",
"lint-staged": "^11.1.2",
"prettier": "^2.6.2",
"typescript": "^4.7.2"
},
"engines": {
"node": ">=12.0.0"
}
}