diff --git a/package.json b/package.json index 77a9cfc..2babf57 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,11 @@ "repository": "git@github.com:NodeFactoryIo/js-libp2p-noise.git", "author": "NodeFactory ", "license": "MIT", + "keywords": [ + "libp2p", + "noise", + "crypto" + ], "scripts": { "prebuild": "rm -rf lib", "build": "babel src -x .ts -d lib --source-maps", @@ -13,6 +18,23 @@ "pretest": "yarn check-types", "test": "DEBUG=libp2p:noise mocha -r ./babel-register.js \"test/**/*.test.ts\"" }, + "babel": { + "presets": [ + [ + "@babel/preset-env", + { + "targets": { + "node": "12" + } + } + ], + "@babel/preset-typescript" + ], + "plugins": [ + "@babel/plugin-proposal-object-rest-spread", + "@babel/plugin-proposal-async-generator-functions" + ] + }, "devDependencies": { "@babel/cli": "^7.6.4", "@babel/core": "^7.6.4", @@ -32,23 +54,6 @@ "mocha": "^6.2.2", "typescript": "^3.6.4" }, - "babel": { - "presets": [ - [ - "@babel/preset-env", - { - "targets": { - "node": "12" - } - } - ], - "@babel/preset-typescript" - ], - "plugins": [ - "@babel/plugin-proposal-object-rest-spread", - "@babel/plugin-proposal-async-generator-functions" - ] - }, "dependencies": { "bcrypto": "^4.2.3", "bn.js": "^5.0.0",