-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.46 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.46 KB
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
80
81
{
"name": "node-nim",
"version": "10.9.75",
"description": "NetEase IM nodejs wrapper based on NetEase IM C++ SDK",
"main": "dist/node-nim.js",
"bin": {
"node-nim-tester": "node-nim-tester.js"
},
"types": "types/node-nim.d.ts",
"author": "Netease",
"license": "ISC",
"homepage": "https://github.com/netease-im/node-nim",
"repository": {
"type": "git",
"url": "git://github.com/netease-im/node-nim.git"
},
"scripts": {
"coverage": "nyc mocha test/test_all.js -slow 200 -timeout 10000",
"build": "npm run build_ts",
"build_ts": "rimraf ./dist && rimraf ./types && tsc",
"build_html_doc": "typedoc --plugin typedoc-github-theme",
"prepublishOnly": "npm run build_ts",
"postinstall": "node script/download-sdk.js",
"download_sdk": "node script/download-sdk.js",
"publish_to_netease_npm": "node script/publish-to-netease-npm.js http://npm.netease.im/",
"publish_to_npmjs": "node script/publish-to-netease-npm.js https://registry.npmjs.org",
"test": "npx cross-env BABEL_ENV=test mocha"
},
"nyc": {
"cache": false,
"reporter": [
"lcov"
]
},
"dependencies": {
"axios": "^1.6.2",
"compare-versions": "^4.1.4",
"decompress": "^4.2.1",
"eventemitter3": "^4.0.7"
},
"devDependencies": {
"@babel/preset-env": "^7.24.0",
"@babel/register": "^7.23.7",
"@types/node": "^16.18.23",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"bluebird": "^3.7.2",
"cmake-js": "^6.3.2",
"commander": "^13.1.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.2.0",
"git-describe": "^4.1.1",
"hawk-web": "^1.3.21",
"mocha": "^9.2.2",
"node-addon-api": "^4.3.0",
"nyc": "^15.1.0",
"sinon": "^18.0.0",
"typedoc": "^0.26.6",
"typedoc-github-theme": "^0.1.2",
"typescript": "^4.9.5",
"winston": "^3.17.0"
},
"keywords": [
"netease",
"nim",
"im sdk",
"nim sdk",
"nim node",
"nim electron"
],
"files": [
"dist/",
"types/",
"package.json",
"script/",
"node-nim-tester.js"
]
}