-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
60 lines (60 loc) · 1.61 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
{
"name": "@chainsafe/bls-keystore",
"version": "3.1.0",
"main": "lib/index.js",
"files": [
"lib"
],
"browser": {
"lib/node": "lib/browser"
},
"types": "lib/index.d.ts",
"repository": "[email protected]:ChainSafe/bls-keystore.git",
"author": "ChainSafe <[email protected]>",
"license": "MIT",
"keywords": [
"ethereum",
"eth2",
"bls",
"eip-2335"
],
"scripts": {
"prebuild": "rm -rf lib && yarn build:codegen",
"build:codegen": "ts-node -P tsconfig.json scripts/schema-validation-codegen.ts",
"build": "tsc --declaration --outDir lib",
"check-types": "tsc --noEmit",
"test": "yarn test:node && yarn test:browser",
"test:node": "mocha --verbose --colors --coverage -r ts-node/register test/*.test.ts",
"test:browser": "karma start",
"lint": "eslint --ext .ts src/"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^20.11.11",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"ajv": "^8.10.0",
"ajv-formats": "^2.1.1",
"chai": "^4.2.0",
"eslint": "^8.56.0",
"karma": "^6.3.16",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-mocha": "^2.0.1",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^5.0.0",
"mocha": "^7.1.2",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.0",
"typescript": "^5.3.0",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0"
},
"dependencies": {
"ethereum-cryptography": "^2.0.0",
"uuid": "^9.0.0"
}
}