-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
87 lines (87 loc) · 3 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
87
{
"name": "hazelcast-client",
"version": "5.3.0",
"description": "Hazelcast - a real-time stream processing platform - Node.js Client",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"dependencies": {
"@types/long": "4.0.0",
"long": "4.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "~1.0.2",
"@types/node": "~10.17.60",
"@typescript-eslint/eslint-plugin": "~5.45.0",
"@typescript-eslint/parser": "~5.45.0",
"chai": "~4.3.6",
"chai-as-promised": "~7.1.1",
"eslint": "~8.28.0",
"eslint-plugin-mocha": "~9.0.0",
"husky": "~6.0.0",
"jsonschema": "~1.4.0",
"markdown-link-check": "~3.10.2",
"markdownlint-cli": "~0.32.2",
"mocha": "~9.2.2",
"mousse": "~0.3.1",
"nyc": "~15.1.0",
"path-exists-cli": "~2.0.0",
"rimraf": "~3.0.2",
"sinon": "~13.0.1",
"sinon-chai": "~3.7.0",
"source-map-support": "~0.5.21",
"thrift": "~0.16.0",
"ts-node": "~10.9.1",
"typedoc": "~0.22.18",
"typescript": "~4.7.4",
"winston": "~3.8.2",
"yargs": "~17.5.1"
},
"engines": {
"node": ">=10.4.0"
},
"scripts": {
"clean": "rimraf lib *.jar *.log *.xml coverage",
"compile": "tsc",
"test": "node scripts/test-runner.js all",
"test:unit": "node scripts/test-runner.js unit",
"test:integration": "node scripts/test-runner.js integration",
"validate-user-code": "tsc --build test/user_code/tsconfig.json",
"coverage": "nyc npm test",
"pregenerate-docs": "rimraf docs",
"generate-docs": "typedoc --options typedoc.json",
"generate-docs:watch": "typedoc --watch --options typedoc.json",
"lint": "npm run lint-code && npm run lint-markdown",
"lint:fix": "npm run lint-code:fix && npm run lint-markdown:fix",
"lint-code": "eslint --cache .",
"lint-code:fix": "eslint --cache --fix .",
"lint-markdown": "markdownlint --ignore node_modules '**/*.md'",
"lint-markdown:fix": "markdownlint -f --ignore node_modules '**/*.md'",
"startrc": "node scripts/test-runner.js startrc",
"check-code-samples": "node scripts/test-runner.js check-code-samples",
"check-markdown-links": "markdown-link-check -q",
"prepare": "husky install",
"prepublishOnly": "path-exists lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hazelcast/hazelcast-nodejs-client.git"
},
"keywords": [
"hazelcast",
"real-time",
"stream processing",
"node",
"nodejs",
"node.js",
"client"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hazelcast/hazelcast-nodejs-client/issues"
},
"homepage": "https://github.com/hazelcast/hazelcast-nodejs-client#readme"
}