-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 966 Bytes
/
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
{
"name": "verifiable-logical-clock",
"version": "1.0.0",
"description": "A JavaScript implementation of Verifiable Logical Clock for distributed systems",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --no-cache",
"build": "webpack --config webpack.config.cjs",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peter-jim/vlc-js"
},
"keywords": [
"logical-clock",
"vector-clock",
"distributed-systems",
"lamport-clock"
],
"author": "Lance <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"crypto-js": "^4.2.0"
}
}