-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "@hoprnet/uhttp-crypto",
"version": "1.0.3",
"description": "u(nlinked)HTTP crypto protocol",
"author": "HOPR Association",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"keywords": [
"hopr",
"uHTTP"
],
"engines": {
"node": ">=18.0.0"
},
"license": "GPL-3.0",
"scripts": {
"login": "npx google-artifactregistry-auth --repo-config .npmrc",
"build": "tsc",
"format": "prettier --write src/ .github/ *.js *.ts *.json *.md",
"format:ci": "prettier --check src/ .github/ *.js *.ts *.json *.md",
"lint": "eslint --fix src/",
"lint:ci": "eslint --max-warnings 0 src/",
"test": "jest --coverage"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^1.5.4",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.27",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@noble/ciphers": "^0.4.1",
"@noble/curves": "^1.3.0",
"@noble/hashes": "^1.3.3"
},
"publishConfig": {
"access": "public"
}
}