-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.59 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.59 KB
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
{
"name": "examples",
"version": "0.0.0",
"description": "Based Application Examples",
"repository": {
"type": "git",
"url": "git+https://github.com/ssvlabs/examples.git"
},
"keywords": [
"examples"
],
"scripts": {
"build": "npm run build:ts",
"build:ts": "npm run clean && tsc -b simple-block-agreement/operator",
"clean": "rm -rf simple-block-agreement/**/build",
"format:check": "prettier --check --ignore-path .prettierignore '*/**/*.{js,ts}'",
"format:write": "prettier --write --ignore-path .prettierignore '*/**/*.{js,ts}'",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"test": "npm run lint && npm run format:check && npm run test:coverage",
"test:jest": "jest",
"test:coverage": "c8 --include='**/src/**/*.ts' jest"
},
"author": "SSV.Network",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ssvlabs/examples/issues"
},
"lint-staged": {
"**/*.{js,ts}": [
"npm run lint:fix",
"npm run format:write"
]
},
"homepage": "https://github.com/ssvlabs/examples#readme",
"devDependencies": {
"@eslint/js": "9.28.0",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "8.34.0",
"@typescript-eslint/parser": "8.34.0",
"ava": "6.4.0",
"c8": "10.1.3",
"eslint": "9.28.0",
"globals": "16.2.0",
"husky": "9.1.7",
"jest": "30.0.0",
"prettier": "3.5.3",
"ts-jest": "29.4.0",
"typescript": "5.8.3",
"typescript-eslint": "8.34.0"
},
"dependencies": {
"@noble/curves": "^1.8.1",
"@noble/hashes": "^1.7.1"
}
}