forked from appunto-io/ejabberd-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 980 Bytes
/
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
{
"name": "@appunto/ejabberd-api-client",
"version": "1.0.0",
"description": "NodeJS ejabberd REST API client",
"main": "src/index.js",
"typings": "types/index.d.ts",
"scripts": {
"generate-types": "node ./dev/generate-typings.js > types/index.d.ts",
"jabberd": "cd dev && docker-compose up -d",
"test:watch": "mocha -w --recursive ./test",
"test": "mocha --recursive ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appunto-io/ejabberd-api-client.git"
},
"keywords": [
"ejabberd",
"xmpp",
"rest",
"api"
],
"author": "Mattia Longhin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/appunto-io/ejabberd-api-client/issues"
},
"homepage": "https://github.com/appunto-io/ejabberd-api-client#readme",
"dependencies": {
"axios": "^0.27.2",
"lodash.camelcase": "^4.3.0"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^10.0.0"
}
}