-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
79 lines (79 loc) · 2.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"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 <[email protected]>",
"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"
}
}
}