js-libp2p-noise/package.json

67 lines
1.8 KiB
JSON
Raw Normal View History

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",
2019-11-27 08:39:06 +01:00
"test": "DEBUG=libp2p:noise mocha -r ./babel-register.js \"test/**/*.test.ts\""
2019-10-30 15:02:03 +01:00
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-async-generator-functions": "^7.7.0",
"@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",
"@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",
"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"
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-proposal-async-generator-functions"
]
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-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",
2019-11-20 15:21:53 +01:00
"it-pb-rpc": "^0.1.3",
2019-11-25 13:27:55 +01:00
"it-pipe": "^1.1.0",
2019-12-03 13:39:33 +01:00
"libp2p-crypto": "^0.17.1",
2019-12-02 12:53:00 +01:00
"peer-id": "^0.13.5",
"protobufjs": "~6.8.8"
2019-10-30 15:02:03 +01:00
}
}