safesupport-bot/package.json

84 lines
2.4 KiB
JSON
Raw Normal View History

2020-02-23 00:30:27 +00:00
{
"name": "private-safesupport-bot",
2022-01-12 17:06:16 +00:00
"version": "3.1.0",
2020-05-07 00:49:14 +00:00
"description": "Chatbot to manage interactions on Safe Support Chat",
"main": "dist/index.js",
2020-02-23 00:30:27 +00:00
"scripts": {
2020-03-15 18:10:59 +00:00
"develop": "nodemon --exec babel-node src/index.js",
"build": "babel src -d dist",
2020-12-01 03:47:32 +00:00
"setup": "node src/setup.js",
2020-03-16 03:30:00 +00:00
"start": "yarn build && node dist/index.js",
"test": "jest"
2020-02-23 00:30:27 +00:00
},
"author": "",
"license": "ISC",
"dependencies": {
2020-03-16 03:30:00 +00:00
"dotenv": "^8.2.0",
"matrix-js-sdk": "^6.2.1",
2020-12-01 03:47:32 +00:00
"node-fetch": "^2.6.1",
2020-02-23 00:30:27 +00:00
"node-localstorage": "^2.1.5",
2020-07-25 23:00:28 +00:00
"node-webcrypto-ossl": "^2.1.0",
2020-02-23 00:30:27 +00:00
"olm": "https://packages.matrix.org/npm/olm/olm-3.1.4.tgz",
"uuidv4": "^6.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
2020-03-16 18:41:56 +00:00
"@babel/cli": "^7.8.4",
2020-04-22 05:35:34 +00:00
"@babel/core": "7.7.7",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-proposal-decorators": "7.7.4",
"@babel/plugin-proposal-export-namespace-from": "7.7.4",
"@babel/plugin-proposal-function-sent": "7.7.4",
"@babel/plugin-proposal-json-strings": "7.7.4",
"@babel/plugin-proposal-numeric-separator": "7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-proposal-throw-expressions": "7.7.4",
"@babel/plugin-syntax-dynamic-import": "7.7.4",
"@babel/plugin-syntax-import-meta": "7.7.4",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
2020-03-16 03:30:00 +00:00
"babel-jest": "^25.1.0",
2020-02-23 18:58:09 +00:00
"babel-plugin-dynamic-import-node": "^2.3.0",
2020-03-16 03:30:00 +00:00
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"nodemon": "^2.0.2",
"wait-for-expect": "^3.0.2"
},
"jest": {
2020-04-22 05:35:34 +00:00
"testPathIgnorePatterns": [
"dist"
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "12"
}
}
]
],
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-json-strings",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
"@babel/plugin-proposal-function-sent",
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-proposal-throw-expressions",
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-transform-runtime"
]
2020-02-23 00:30:27 +00:00
}
2020-03-16 03:30:00 +00:00
}