-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 861 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 861 Bytes
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
{
"name": "infinispan",
"version": "0.13.0",
"description": "Infinispan Javascript client",
"main": "index",
"typings": "./types",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore lib spec index.js",
"test": "jasmine"
},
"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",
"jsdoc": "^4.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",
"long": "^5.2.3"
}
}