-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 908 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 908 Bytes
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
{
"name": "maxleap-im",
"version": "4.2.3",
"description": "MaxLeap JavaScript SDK for IM.",
"main": "lib/im.js",
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaxLeap/MaxIM-JavaScript.git"
},
"keywords": [
"maxleap",
"maxleap-im"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/MaxLeap/MaxIM-JavaScript/issues"
},
"homepage": "https://www.maxleap.cn",
"scripts": {
"lint": "./node_modules/.bin/tslint -c tslint.json src/**/*.ts --fix",
"test": "./node_modules/.bin/mocha test",
"build": "rm -rf ./lib && tsc"
},
"dependencies": {
"axios": "^0.15.3",
"socket.io-client": "~1.4.8"
},
"devDependencies": {
"@types/socket.io-client": "~1.4.8",
"chai": "^4.1.2",
"mocha": "^3.5.3",
"tslint": "^5.4.3",
"typescript": "^2.5.2"
}
}