-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
73 lines (73 loc) · 1.58 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
65
66
67
68
69
70
71
72
73
{
"name": "ilp-store-redis",
"version": "0.0.5",
"description": "ILP store for redis",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src/**/*.ts",
"src/**/*.js",
"src/**/*.js.map"
],
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/interledgerjs/ilp-store-redis.git"
},
"keywords": [
"ilp",
"ilp-connector",
"redis"
],
"author": "Interledger Team <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/interledgerjs/ilp-store-redis/issues"
},
"homepage": "https://github.com/interledgerjs/ilp-store-redis#readme",
"dependencies": {
"ioredis": "^3.2.2"
},
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/chai-as-promised": "^7.1.0",
"@types/ioredis": "^4.0.3",
"@types/mocha": "^2.2.45",
"@types/node": "^8.5.2",
"@types/sinon": "^4.1.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^4.1.0",
"mocha-typescript": "^1.1.12",
"nyc": "^14.1.1",
"sinon": "^4.1.3",
"source-map-support": "^0.5.0",
"ts-node": "^4.1.0",
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.6.2"
},
"peerDependencies": {
"ilp-connector": "^22.0.0"
},
"nyc": {
"check-coverage": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true
}
}