UNPKG

1.4 kBJSONView Raw
1{
2 "name": "matrix-bot-sdk",
3 "version": "0.2.2",
4 "description": "A lightweight version of the matrix-js-sdk intended for bots",
5 "repository": {
6 "type": "git",
7 "url": "git+https://github.com/turt2live/matrix-js-bot-sdk.git"
8 },
9 "author": "turt2live",
10 "license": "MIT",
11 "bugs": {
12 "url": "https://github.com/turt2live/matrix-js-bot-sdk/issues"
13 },
14 "homepage": "https://github.com/turt2live/matrix-js-bot-sdk#readme",
15 "scripts": {
16 "prepare": "node scripts/try_build.js",
17 "prepublishOnly": "npm run build",
18 "build": "tsc",
19 "lint": "tslint --project ./tsconfig.json -t stylish",
20 "build:examples": "tsc -p tsconfig-examples.json",
21 "example:appservice": "npm run build:examples && node lib/examples/appservice.js"
22 },
23 "main": "./lib/index.js",
24 "typings": "./lib/index.d.ts",
25 "engines": {
26 "node": ">= 8.0.0",
27 "npm": ">= 5.0.0"
28 },
29 "dependencies": {
30 "@types/node": "^8.10.34",
31 "bluebird": "^3.5.2",
32 "express": "^4.16.4",
33 "hash.js": "^1.1.7",
34 "lowdb": "^1.0.0",
35 "morgan": "^1.9.1",
36 "request": "^2.88.0",
37 "tslint": "^5.11.0",
38 "typescript": "^3.1.1"
39 },
40 "keywords": [
41 "matrix",
42 "bot",
43 "sdk",
44 "js",
45 "node",
46 "helpers",
47 "snippets",
48 "chat",
49 "modules"
50 ],
51 "files": [
52 "src/*",
53 "lib/*",
54 "scripts/*"
55 ]
56}