-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 2.72 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
80
81
82
83
84
85
86
{
"name": "node-nim",
"version": "10.5.0",
"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",
"build_wiki_doc": "typedoc --plugin typedoc-plugin-markdown --plugin typedoc-github-wiki-theme --out wiki_doc",
"build_markdown_doc": "typedoc --plugin typedoc-plugin-markdown --out markdown_doc",
"prepublishOnly": "npm run build_ts",
"install": "npm run download_sdk",
"download_sdk": "node -e \"require('./script/download-sdk.js').downloadSDK()\"",
"publish_to_netease_npm": "node script/publish-to-netease-npm.js",
"test": "npx cross-env BABEL_ENV=test mocha"
},
"nyc": {
"cache": false,
"reporter": [
"lcov"
]
},
"dependencies": {
"compare-versions": "^4.1.4",
"download": "^8.0.0",
"eventemitter3": "^4.0.7",
"node-fetch": "^2.6.9"
},
"optionalDependencies": {
"commander": "^8.3.0",
"hawk-web": "latest"
},
"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",
"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",
"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",
"typedoc-github-wiki-theme": "^2.0.0",
"typedoc-material-theme": "^1.1.0",
"typedoc-plugin-markdown": "^4.2.6",
"typescript": "^4.9.5"
},
"keywords": [
"netease",
"nim",
"im sdk",
"nim sdk",
"nim node",
"nim electron"
],
"files": [
"dist/",
"types/",
"package.json",
"script/",
"node-nim-tester.js"
]
}