-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.83 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
{
"name": "@diva.exchange/i2p-sam",
"version": "5.4.1",
"description": "I2P SAM: peer-to-peer communication between applications over I2P",
"funding": {
"type" : "individual",
"url" : "https://www.diva.exchange/en/join-in/"
},
"type": "module",
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js"
},
"keywords": [
"i2p",
"sam",
"p2p",
"peer-to-peer",
"privacy",
"diva.exchange"
],
"author": "DIVA.EXCHANGE Association <[email protected]> (https://diva.exchange)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/diva-exchange/i2p-sam.git"
},
"bugs": {
"url": "https://github.com/diva-exchange/i2p-sam/issues"
},
"scripts": {
"build": "npm run clean && npm i && tsc && npm run lint",
"clean": "rm -rf lib/*",
"clean-test": "rm -rf test/compiled-lib/*",
"clean-benchmark": "rm -rf test/compiled-benchmark/*",
"lint": "prettier -w \"**/*.ts\" && eslint --fix src/ test/ --ext .ts",
"test": "npm run build && npm run clean-test && tsc -p ./test/tsconfig.json && c8 mocha",
"benchmark": "npm run clean-benchmark && tsc -p ./test/benchmark/tsconfig.json",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"nanoid": "^5.0.4",
"rfc4648": "^1.5.3"
},
"devDependencies": {
"@testdeck/mocha": "^0.3.3",
"@tsconfig/node16": "^16.1.1",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"c8": "^9.1.0",
"chai": "^5.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "^10.2.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
}
}