2019-10-30 15:02:03 +01:00
|
|
|
{
|
|
|
|
"name": "js-libp2p-noise",
|
|
|
|
"version": "1.0.0",
|
2019-11-04 22:09:42 +01:00
|
|
|
"main": "dist/index.js",
|
2019-10-30 15:02:03 +01:00
|
|
|
"repository": "git@github.com:NodeFactoryIo/js-libp2p-noise.git",
|
|
|
|
"author": "NodeFactory <info@nodefactory.io>",
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
|
|
|
"prebuild": "rm -rf lib",
|
|
|
|
"build": "babel src -x .ts -d lib --source-maps",
|
|
|
|
"check-types": "tsc --incremental --noEmit",
|
|
|
|
"lint": "eslint --ext .ts src/",
|
|
|
|
"pretest": "yarn check-types",
|
|
|
|
"test": "mocha -r ./babel-register.js \"test/**/*.test.ts\""
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/cli": "^7.6.4",
|
|
|
|
"@babel/core": "^7.6.4",
|
2019-11-22 12:57:53 +01:00
|
|
|
"@babel/plugin-proposal-async-generator-functions": "^7.7.0",
|
2019-11-06 13:24:30 +01:00
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
|
2019-10-30 15:02:03 +01:00
|
|
|
"@babel/preset-env": "^7.6.3",
|
|
|
|
"@babel/preset-typescript": "^7.6.0",
|
|
|
|
"@babel/register": "^7.6.2",
|
2019-11-04 17:06:31 +01:00
|
|
|
"@babel/runtime": "^7.6.3",
|
2019-10-30 15:02:03 +01:00
|
|
|
"@types/chai": "^4.2.4",
|
|
|
|
"@types/mocha": "^5.2.7",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^2.6.0",
|
|
|
|
"@typescript-eslint/parser": "^2.6.0",
|
2019-10-31 17:35:18 +01:00
|
|
|
"bn.js-typings": "^1.0.1",
|
2019-10-30 15:02:03 +01:00
|
|
|
"chai": "^4.2.0",
|
|
|
|
"eslint": "^6.6.0",
|
2019-11-07 10:55:18 +01:00
|
|
|
"libp2p-crypto": "^0.17.1",
|
2019-10-30 15:02:03 +01:00
|
|
|
"mocha": "^6.2.2",
|
|
|
|
"typescript": "^3.6.4"
|
|
|
|
},
|
|
|
|
"babel": {
|
|
|
|
"presets": [
|
2019-11-07 10:55:18 +01:00
|
|
|
[
|
|
|
|
"@babel/preset-env",
|
|
|
|
{
|
|
|
|
"targets": {
|
|
|
|
"node": "12"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
2019-10-30 15:02:03 +01:00
|
|
|
"@babel/preset-typescript"
|
|
|
|
],
|
2019-11-04 17:06:31 +01:00
|
|
|
"plugins": [
|
2019-11-22 12:57:53 +01:00
|
|
|
"@babel/plugin-proposal-object-rest-spread",
|
|
|
|
"@babel/plugin-proposal-async-generator-functions"
|
2019-11-04 17:06:31 +01:00
|
|
|
]
|
2019-10-31 17:35:18 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-11-04 14:31:58 +01:00
|
|
|
"bcrypto": "^4.2.3",
|
2019-10-31 17:35:18 +01:00
|
|
|
"bn.js": "^5.0.0",
|
|
|
|
"buffer": "^5.4.3",
|
2019-11-12 14:02:59 +01:00
|
|
|
"it-pair": "^1.0.0",
|
2019-11-20 15:21:53 +01:00
|
|
|
"it-pb-rpc": "^0.1.3",
|
2019-11-06 13:24:30 +01:00
|
|
|
"protobufjs": "~6.8.8"
|
2019-10-30 15:02:03 +01:00
|
|
|
}
|
|
|
|
}
|