2019-10-30 15:02:03 +01:00
|
|
|
{
|
2020-02-07 13:52:32 +01:00
|
|
|
"name": "libp2p-noise",
|
2020-06-15 14:46:59 +02:00
|
|
|
"version": "1.1.2",
|
2020-06-18 22:24:59 +01:00
|
|
|
"main": "dist/src/index.js",
|
2020-06-23 10:12:58 +02:00
|
|
|
"types": "dist/src/index.d.ts",
|
2020-02-07 11:12:14 +01:00
|
|
|
"files": [
|
2020-06-19 12:49:10 +02:00
|
|
|
"dist",
|
|
|
|
"src"
|
2020-02-07 11:12:14 +01:00
|
|
|
],
|
2020-06-23 15:33:47 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/NodeFactoryIo/js-libp2p-noise.git"
|
|
|
|
},
|
2019-10-30 15:02:03 +01:00
|
|
|
"author": "NodeFactory <info@nodefactory.io>",
|
|
|
|
"license": "MIT",
|
2019-12-03 16:09:46 +01:00
|
|
|
"keywords": [
|
|
|
|
"libp2p",
|
|
|
|
"noise",
|
|
|
|
"crypto"
|
|
|
|
],
|
2019-10-30 15:02:03 +01:00
|
|
|
"scripts": {
|
2020-08-15 14:37:43 +02:00
|
|
|
"bench": "node benchmarks/benchmark.js",
|
2020-06-18 22:23:39 +01:00
|
|
|
"build": "aegir build --ts",
|
|
|
|
"lint": "aegir lint --ts",
|
2020-06-19 12:49:10 +02:00
|
|
|
"lint:fix": "aegir lint --ts --fix",
|
2020-06-23 10:12:58 +02:00
|
|
|
"test": "aegir test --ts --node true",
|
2020-06-18 22:23:39 +01:00
|
|
|
"test:node": "aegir test -t node --ts",
|
2020-06-23 10:12:58 +02:00
|
|
|
"test:browser": "aegir test -t browser --node true --ts",
|
2020-06-18 22:23:39 +01:00
|
|
|
"proto:gen": "pbjs -t static-module -o ./src/proto/payload.js ./src/proto/payload.proto && pbts -o ./src/proto/payload.d.ts ./src/proto/payload.js && yarn run lint --fix"
|
2019-10-30 15:02:03 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-02-13 22:51:36 +01:00
|
|
|
"@types/bl": "^2.1.0",
|
2019-10-30 15:02:03 +01:00
|
|
|
"@types/chai": "^4.2.4",
|
|
|
|
"@types/mocha": "^5.2.7",
|
2020-06-23 10:12:58 +02:00
|
|
|
"aegir": "25.0.0",
|
2020-08-15 14:37:43 +02:00
|
|
|
"benchmark": "^2.1.4",
|
2019-10-30 15:02:03 +01:00
|
|
|
"chai": "^4.2.0",
|
2020-06-19 13:12:23 +02:00
|
|
|
"karma-mocha-webworker": "^1.3.0",
|
2020-08-15 14:37:43 +02:00
|
|
|
"microtime": "^3.0.0",
|
2019-10-30 15:02:03 +01:00
|
|
|
"mocha": "^6.2.2",
|
2020-06-18 22:23:39 +01:00
|
|
|
"sinon": "^8.1.0"
|
2019-10-30 15:02:03 +01:00
|
|
|
},
|
2019-10-31 17:35:18 +01:00
|
|
|
"dependencies": {
|
2020-04-22 19:03:41 +02:00
|
|
|
"bcrypto": "5.1.0",
|
2019-10-31 17:35:18 +01:00
|
|
|
"buffer": "^5.4.3",
|
2019-12-02 10:48:19 +01:00
|
|
|
"debug": "^4.1.1",
|
2019-11-25 13:27:55 +01:00
|
|
|
"it-buffer": "^0.1.1",
|
|
|
|
"it-length-prefixed": "^3.0.0",
|
2019-11-12 14:02:59 +01:00
|
|
|
"it-pair": "^1.0.0",
|
2020-04-06 10:42:04 +02:00
|
|
|
"it-pb-rpc": "^0.1.8",
|
2019-11-25 13:27:55 +01:00
|
|
|
"it-pipe": "^1.1.0",
|
2020-04-23 12:56:09 +02:00
|
|
|
"libp2p-crypto": "^0.17.6",
|
2019-12-02 12:53:00 +01:00
|
|
|
"peer-id": "^0.13.5",
|
2020-04-22 19:03:41 +02:00
|
|
|
"protobufjs": "6.8.8"
|
2020-04-23 12:56:09 +02:00
|
|
|
},
|
|
|
|
"resolutions": {
|
|
|
|
"bn.js": "4.4.0"
|
2020-06-18 22:23:39 +01:00
|
|
|
},
|
|
|
|
"eslintConfig": {
|
2020-06-19 13:06:31 +02:00
|
|
|
"extends": "./node_modules/aegir/src/config/eslintrc-ts.js",
|
|
|
|
"rules": {
|
|
|
|
"@typescript-eslint/no-unused-vars": "error"
|
|
|
|
},
|
|
|
|
"ignorePatterns": [
|
|
|
|
"src/proto/payload.js"
|
|
|
|
]
|
2019-10-30 15:02:03 +01:00
|
|
|
}
|
|
|
|
}
|