-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 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
{
"name": "infinispan",
"version": "0.15.0",
"description": "Infinispan Javascript client",
"main": "index",
"typings": "./types",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore lib spec index.js",
"test": "node scripts/docker-test.js",
"docker:up": "docker compose -p ispn-test up -d --wait && docker compose -p ispn-test --profile failover create server-failover-one server-failover-two server-failover-three",
"docker:down": "docker compose -p ispn-test --profile failover down --remove-orphans",
"ssl:generate": "node scripts/make-ssl.js",
"docs:api": "jsdoc lib/*.js",
"docs:user": "node scripts/gen-asciidoc.js"
},
"author": "Infinispan Community",
"license": "Apache-2.0",
"keywords": [
"infinispan",
"cache",
"client",
"cluster",
"failover",
"hashing",
"nosql"
],
"repository": {
"type": "git",
"url": "git+https://github.com/infinispan/js-client.git"
},
"dependencies": {
"buffer-xor": "^2.0.2",
"log4js": "^6.4.6",
"protobufjs": "^7.0.0",
"underscore": "^1.13.3",
"urllib": "^4.9.0"
},
"devDependencies": {
"eslint": "^8.26.0",
"jasmine": "^6.1.0",
"jsdoc": "^4.0.2",
"long": "^5.2.3"
}
}