-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "drand-client",
"version": "1.2.6",
"description": "A client to the drand randomness beacon network.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"clean": "rm -rf ./build/* && rm -rf lib/version.ts",
"precompile": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > lib/version.ts",
"compile": "npm run precompile && tsc --project tsconfig.json",
"publish:github": "npm publish --registry https://npm.pkg.github.com",
"test": "jest --verbose ./test/**.test.ts",
"lint": "eslint ./{lib,test}/*.ts",
"lint:fix": "eslint ./{lib,test}/*.ts --fix"
},
"author": "Alan Shaw",
"license": "(Apache-2.0 OR MIT)",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node-fetch": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"abort-controller": "^3.0.0",
"eslint": "^8.45.0",
"jest": "^29.6.1",
"jest-fetch-mock": "^3.0.3",
"node-fetch": "^3.3.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"typescript-eslint": "^0.0.1-alpha.0"
},
"dependencies": {
"@babel/traverse": "^7.23.2",
"@noble/curves": "^1.4.0",
"buffer": "^6.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drand/drand-client.git"
},
"bugs": {
"url": "https://github.com/drand/drand-client/issues"
},
"homepage": "https://github.com/drand/drand-client#readme",
"engines": {
"node": ">= 10.4.0"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"keywords": [
"drand",
"random",
"randomness",
"client",
"bls",
"bls12381",
"bls12-381"
]
}