-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
77 lines (77 loc) · 2.45 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
{
"name": "quorum-genesis-tool",
"version": "0.2.20",
"description": "A utility that lets developers create genesis files and node (&account) keys from ConsenSys!",
"main": "build/index.js",
"types": "build/typescript/index.d.ts",
"repository": "[email protected]:ConsenSys/quorum-genesis-tool.git",
"contributors": [
"Joshua Fernandes <[email protected]>",
"Eric Lin <[email protected]>"
],
"license": "Apache-2.0",
"keywords": [
"quorum",
"genesis",
"goquorum",
"besu",
"ethereum",
"genesis-file"
],
"private": false,
"bin": "./index.js",
"scripts": {
"clean": "rm -rf build output",
"build": "tsc",
"postbuild": "cp -R src/templates build",
"test": "jest --verbose",
"lint": "eslint './src/**'",
"lintAndFix": "eslint --fix './src/**'",
"prepare": "tsc && eslint --fix './src/**'",
"start": "node build/index.js",
"publish": "npm run clean && npm run build && npm run test && npm publish --tag=latest"
},
"dependencies": {
"argon2": "^0.40",
"chalk": "^4.1.2",
"cli-spinners": "^3.1.0",
"ethereumjs-wallet": "^1.0.2",
"keccak": "^3.0.2",
"log-update": "^6.0.0",
"nunjucks": "^3.2.3",
"rlp": "^3.0.0",
"secp256k1": "^5.0.0",
"secp256r1": "^0.0.3",
"toml": "^3.0.0",
"tweetnacl": "^1.0.3",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/keccak": "^3.0.1",
"@types/node": "^20.14.12",
"@types/nunjucks": "^3.2.1",
"@types/secp256k1": "^4.0.3",
"@types/tmp": "^0.2.0",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.0",
"eslint-plugin-jsdoc": "^48.8.3",
"eslint-plugin-prefer-arrow": "^1.2.1",
"husky": "^9.1.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"ts-jest": "^29.2.3",
"typescript": "<=5.6.0"
},
"dependenciesComments": {
"eslint-plugin-jsdoc": "linting rules for eslint",
"eslint-plugin-prefer-arrow": "prefer arrow functions over the function..",
"eslint-plugin-import": "import/export syntax",
"eslint-config-prettier": "Turns off all rules that are unnecessary or might conflict with Prettier",
"lint-staged": "Run linters against staged git files and don't let stuff slip into your code base!"
}
}