You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.1 KiB
JSON
80 lines
2.1 KiB
JSON
{
|
|
"name": "@rocket.chat/sdk",
|
|
"version": "0.2.9-1",
|
|
"description": "Node.js SDK for Rocket.Chat. Application interface for server methods and message streams.",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"repository": "https://github.com/RocketChat/Rocket.Chat.js.SDK.git",
|
|
"author": "Tim Kinnane <tim.kinnane@rocket.chat>",
|
|
"license": "MIT",
|
|
"private": false,
|
|
"keywords": [
|
|
"adapter",
|
|
"rocketchat",
|
|
"rocket",
|
|
"chat",
|
|
"messaging",
|
|
"CUI",
|
|
"typescript"
|
|
],
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"engines": {
|
|
"node": "> 8.0.0",
|
|
"npm": "> 5.0.0"
|
|
},
|
|
"scripts": {
|
|
"pretest": "tslint -p . && ts-node src/utils/setup.ts",
|
|
"test": "nyc mocha './src/lib/**/*.spec.ts'",
|
|
"test:hook": "mocha './**/*.spec.ts'",
|
|
"test:debug": "mocha --inspect --debug-brk 'src/**/*.spec.ts'",
|
|
"test:package": "preview && mocha 'src/index.spec.ts'",
|
|
"start": "ts-node ./src/utils/start",
|
|
"docs": "rimraf ./docs && typedoc --options ./typedoc.json ./src/lib",
|
|
"js-docs": "./node_modules/.bin/docma -c docma.json",
|
|
"prebuild": "npm run test",
|
|
"build": "rimraf ./dist/* && tsc && npm run test:package"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-push": "npm run test:hook"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.1.2",
|
|
"@types/mocha": "^2.2.48",
|
|
"@types/sinon": "^4.3.0",
|
|
"chai": "^4.1.2",
|
|
"commitizen": "^2.9.6",
|
|
"cz-conventional-changelog": "^2.1.0",
|
|
"docma": "^3.2.2",
|
|
"dotenv": "^5.0.1",
|
|
"husky": "^0.14.3",
|
|
"mocha": "^5.0.1",
|
|
"nyc": "^11.4.1",
|
|
"package-preview": "^1.0.5",
|
|
"rimraf": "^2.6.2",
|
|
"sinon": "^4.4.2",
|
|
"source-map-support": "^0.5.3",
|
|
"ts-node": "^5.0.1",
|
|
"tslint": "^5.9.1",
|
|
"tslint-config-standard": "^7.0.0",
|
|
"typedoc": "0.8.0",
|
|
"typedoc-plugin-external-module-name": "^1.1.1",
|
|
"typescript": "^2.7.2"
|
|
},
|
|
"dependencies": {
|
|
"@types/lru-cache": "^4.1.0",
|
|
"@types/node": "^9.4.6",
|
|
"asteroid": "rocketchat/asteroid",
|
|
"lru-cache": "^4.1.1",
|
|
"node-rest-client": "^3.1.0"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|