-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.84 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
{
"name": "redisai-js",
"version": "1.0.0",
"description": "A high-performance Typescript client for RedisAI",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" ",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"test": "tsc && nyc --reporter=html --reporter=text mocha --timeout 90000 --require ts-node/register --require source-map-support/register --recursive tests/**",
"coverage": "nyc report --reporter=text-lcov | ./node_modules/.bin/codecov --pipe --disable=gcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RedisAI/redisai-js.git"
},
"keywords": [
"redis",
"redisai",
"javascript-client",
"serving-tensors",
"machine-learning"
],
"files": [
"lib/**/*"
],
"author": "filipecosta.90@gmail.com",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/RedisAI/redisai-js/issues"
},
"homepage": "https://github.com/RedisAI/redisai-js#readme",
"dependencies": {
"redis": "^3.1.2",
"@types/redis": "^2.8.29"
},
"devDependencies": {
"@babel/polyfill": "^7.8.7",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.4",
"@types/redis": "^2.8.29",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"core-js": "^2.5.7",
"coveralls": "^3.1.0",
"jimp": "^0.12.1",
"mocha": "^7.1.2",
"np": "^6.2.3",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"source-map-support": "^0.5.19",
"ts-node": "^8.9.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
}
}