forked from hazelcast/hazelcast-nodejs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.24 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.24 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
{
"name": "hazelcast-client",
"version": "3.12.3",
"description": "Hazelcast - open source In-Memory Data Grid - client for NodeJS",
"main": "lib/index.js",
"dependencies": {
"bluebird": "3.5.4",
"long": "3.2.0",
"safe-buffer": "5.1.2"
},
"devDependencies": {
"@types/bluebird": "3.5.21",
"@types/long": "3.0.32",
"@types/node": "6.0.87",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"hazelcast-remote-controller": "^1.0.0",
"istanbul": "0.4.5",
"jsonschema": "1.2.4",
"mocha": "3.5.3",
"mocha-junit-reporter": "1.18.0",
"mousse": "0.3.1",
"remap-istanbul": "0.9.6",
"rimraf": "2.6.2",
"sinon": "4.0.0",
"tslint": "5.7.0",
"typescript": "2.5.2",
"winston": "2.3.1"
},
"scripts": {
"clean": "rimraf lib typings *.jar *.log",
"compile": "tsc",
"pretest": "node download-remote-controller.js",
"test": "mocha --recursive --reporter-options mochaFile=report.xml --reporter mocha-junit-reporter",
"precoverage": "node download-remote-controller.js",
"coverage": "rimraf coverage && istanbul cover --root lib/ --include-all-sources node_modules/mocha/bin/_mocha -- --recursive --reporter-options mochaFile=report.xml --reporter mocha-junit-reporter",
"coverage-without-codecs": "rimraf coverage && istanbul cover -x **/codec/**/* --root lib/ --include-all-sources node_modules/mocha/bin/_mocha -- --recursive --reporter spec",
"postcoverage": "remap-istanbul -i coverage/coverage.json -o coverage/cobertura-coverage.xml -t cobertura && remap-istanbul -i coverage/coverage.json -o coverage -t html",
"pregenerate-docs": "rimraf docs",
"generate-docs": "typedoc --out docs/ --exclude **/codec/**/* src/ --excludeExternals --ignoreCompilerErrors --excludePrivate",
"lint": "tslint --project tsconfig.json -t stylish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hazelcast/hazelcast-nodejs-client.git"
},
"keywords": [
"hazelcast",
"nodejs",
"node",
"client",
"data",
"grid"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hazelcast/hazelcast-nodejs-client/issues"
},
"homepage": "https://github.com/hazelcast/hazelcast-nodejs-client#readme",
"typings": "./lib/index"
}