-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "causality-client-js",
"version": "1.0.0",
"description": "JavaScript client for Causality Protocol - A decentralized invitation system based on Verifiable Logical Clock",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "babel src -d dist",
"example": "node examples/nostr-usage.js",
"basic": "node examples/basic-usage.js"
},
"dependencies": {
"@noble/secp256k1": "^1.7.1",
"axios": "^1.7.9",
"level": "^8.0.0",
"nostr-tools": "^1.17.0",
"verifiable-logical-clock": "^1.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@babel/cli": "^7.x",
"@babel/core": "^7.x",
"@babel/preset-env": "^7.x",
"babel-jest": "^29.x",
"jest": "^29.x",
"jest-environment-jsdom": "^29.x"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(verifiable-logical-clock)/)"
],
"testEnvironment": "jsdom",
"setupFiles": [
"./jest.setup.js"
]
}
}