package.json (1555B)
1 { 2 "name": "riot-translatebot", 3 "version": "1.0.0", 4 "description": "A simple riot bot which provides Status about Weblate", 5 "main": "lib/index.js", 6 "scripts": { 7 "test": "npm run build && mocha --require babel-polyfill --compilers js:babel-core/register", 8 "start": "npm run build && node lib/index.js", 9 "build": "babel src -d lib --source-maps", 10 "prepare": "npm run build" 11 }, 12 "repository": { 13 "type": "git", 14 "url": "git+https://github.com/Nordgedanken/Riot-TranslateBot.git" 15 }, 16 "author": "MTRNord <mtrnord1@gmail.com>", 17 "license": "GPL-3.0", 18 "bugs": { 19 "url": "https://github.com/Nordgedanken/Riot-TranslateBot/issues" 20 }, 21 "homepage": "https://github.com/Nordgedanken/Riot-TranslateBot#readme", 22 "dependencies": { 23 "babel-runtime": "^6.23.0", 24 "lodash": "^4.17.4", 25 "matrix-js-sdk": "^0.7.12", 26 "mz": "^2.6.0", 27 "request-promise": "^4.2.1" 28 }, 29 "devDependencies": { 30 "babel-cli": "^6.24.1", 31 "babel-core": "^6.25.0", 32 "babel-plugin-add-module-exports": "^0.2.1", 33 "babel-plugin-transform-async-to-generator": "^6.24.1", 34 "babel-plugin-transform-class-properties": "^6.24.1", 35 "babel-plugin-transform-object-rest-spread": "^6.23.0", 36 "babel-plugin-transform-runtime": "^6.23.0", 37 "babel-polyfill": "^6.23.0", 38 "babel-preset-es2015": "^6.24.1", 39 "babel-preset-es2016": "^6.24.1", 40 "babel-preset-es2017": "^6.24.1", 41 "babel-register": "^6.24.1", 42 "chai": "^4.0.2", 43 "chai-as-promised": "^7.0.0", 44 "chai-fs": "^1.0.0", 45 "mocha": "^3.4.2" 46 } 47 }