-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
34 lines (34 loc) · 924 Bytes
/
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
{
"name": "redisgraph.js",
"version": "2.3.0",
"description": "Connect to RedisGraph 1.0.0 and up from JavaScript",
"author": "RedisLabs",
"license": "BSD 3",
"repository": {
"type": "git",
"url": "git://github.com/redislabs/redisgraph.js.git"
},
"dependencies": {
"deep-equal": "^2.0.1",
"redis": "^3.0.2"
},
"devDependencies": {
"codecov": "^3.8.1",
"gh-pages": "2.0.1",
"istanbul": "^0.4.5",
"jsdoc": "^3.6.6",
"jsdoc-ts-utils": "^1.1.2",
"mocha": "^7.0.1",
"typescript": "^4.1.5"
},
"scripts": {
"test": "mocha --exit",
"types": "tsc",
"docs": "jsdoc -c jsdoc.conf.json ./src -r -d ./docs -R ./README.md",
"gh-pages": "gh-pages --dist ./docs --branch master --dest ./docs --message \"[skip ci] Updates\"",
"istanbul": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec --exit",
"codecov": "codecov -t ${CODECOV_TOKEN}"
},
"main": "index.js",
"types": "./types"
}