2020-05-14 12:20:39 +00:00
|
|
|
{
|
2021-04-08 10:55:33 +00:00
|
|
|
"name": "@fluencelabs/fluence",
|
2021-12-17 14:12:09 +00:00
|
|
|
"version": "0.0.0",
|
2021-09-27 19:11:35 +00:00
|
|
|
"description": "TypeScript implementation of Fluence Peer",
|
2021-04-08 10:55:33 +00:00
|
|
|
"main": "./dist/index.js",
|
|
|
|
"typings": "./dist/index.d.ts",
|
|
|
|
"scripts": {
|
2021-05-11 21:01:44 +00:00
|
|
|
"test": "jest --watch",
|
|
|
|
"test:all": "jest",
|
|
|
|
"test:unit": "jest --testPathPattern=src/__test__/unit",
|
|
|
|
"test:integration": "jest --testPathPattern=src/__test__/integration",
|
|
|
|
"test:node": "jest --env=node --watch",
|
|
|
|
"test:node:all": "jest --env=node",
|
|
|
|
"test:node:unit": "jest --env=node --testPathPattern=src/__test__/unit",
|
|
|
|
"test:node:integration": "jest --env=node --testPathPattern=src/__test__/integration",
|
2021-09-08 09:42:30 +00:00
|
|
|
"build": "tsc",
|
2021-09-27 19:11:35 +00:00
|
|
|
"build:docs": "typedoc"
|
2021-04-08 10:55:33 +00:00
|
|
|
},
|
|
|
|
"repository": "https://github.com/fluencelabs/fluence-js",
|
|
|
|
"author": "Fluence Labs",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"dependencies": {
|
2021-08-24 14:37:03 +00:00
|
|
|
"@chainsafe/libp2p-noise": "4.0.0",
|
2021-12-17 14:10:22 +00:00
|
|
|
"@fluencelabs/avm": "^0.18.0",
|
2021-04-08 10:55:33 +00:00
|
|
|
"async": "3.2.0",
|
|
|
|
"bs58": "4.0.1",
|
|
|
|
"cids": "0.8.1",
|
|
|
|
"it-length-prefixed": "3.0.1",
|
|
|
|
"it-pipe": "1.1.0",
|
2021-08-18 17:13:40 +00:00
|
|
|
"libp2p": "0.32.3",
|
|
|
|
"libp2p-crypto": "0.19.7",
|
|
|
|
"libp2p-mplex": "0.10.4",
|
|
|
|
"libp2p-websockets": "0.16.1",
|
2021-04-08 10:55:33 +00:00
|
|
|
"loglevel": "1.7.0",
|
2021-08-18 17:13:40 +00:00
|
|
|
"multiaddr": "10.0.0",
|
|
|
|
"peer-id": "0.15.3",
|
2021-10-20 19:20:43 +00:00
|
|
|
"rxjs": "^7.3.0",
|
|
|
|
"ts-pattern": "^3.3.3",
|
2021-04-08 10:55:33 +00:00
|
|
|
"uuid": "8.3.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/jest": "^26.0.22",
|
|
|
|
"jest": "^26.6.3",
|
|
|
|
"ts-jest": "^26.5.4",
|
2021-09-08 09:42:30 +00:00
|
|
|
"typedoc": "^0.21.9",
|
2021-12-10 13:47:58 +00:00
|
|
|
"typescript": "^4.0.0",
|
|
|
|
"js-base64": "^3.7.2"
|
2021-04-08 10:55:33 +00:00
|
|
|
}
|
2020-05-14 12:20:39 +00:00
|
|
|
}
|