-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.69 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "ilp-settlement-xrp",
"version": "1.0.0",
"description": "",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src/**/*.json",
"build/src/**/*.js",
"build/src/**/*.js.map",
"build/src/**/*.d.ts",
"build/doc"
],
"scripts": {
"start": "npm run build && node ./build/src/run.js",
"clean": "rm -Rf .nyc_output && rm -Rf coverage && rm -Rf build ",
"build": "tsc",
"lint": "tslint --project .",
"lintFix": "tslint --project . --fix",
"test": "TS_NODE_TRANSPILE_ONLY=true mocha --require ts-node/register --ui mocha-typescript --require source-map-support/register 'test/**/*.test.ts'",
"test:coverage": "nyc mocha --require ts-node/register --ui mocha-typescript --require source-map-support/register 'test/**/*.test.ts'",
"doc": "typedoc --options typedoc.js src",
"codecov": "codecov",
"preversion": "npm run lint && npm test",
"prepublishOnly": "rm -Rf ./build/test && npm run lint && npm test && npm run doc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/interledgerjs/ilp-settlement-xrp.git"
},
"author": "Interledger Team <info@interledger.org>",
"license": "Apache-2.0",
"dependencies": {
"@types/uuid": "^3.4.4",
"bignumber.js": "^8.1.1",
"debug": "^4.1.1",
"ioredis": "^4.9.0",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"raw-body": "^2.4.0",
"ripple-lib": "^1.2.1",
"uuid": "^3.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/debug": "^4.1.3",
"@types/ioredis": "^4.0.10",
"@types/koa": "^2.0.48",
"@types/koa-bodyparser": "^4.2.2",
"@types/koa-router": "^7.0.40",
"@types/mocha": "^5.2.5",
"@types/mock-require": "^2.0.0",
"@types/sinon": "^5.0.7",
"axios": "^0.18.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.1.0",
"ioredis-mock": "^4.9.0",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"mock-require": "^3.0.3",
"mockttp": "^0.15.0",
"nyc": "^13.1.0",
"sinon": "^7.3.2",
"source-map-support": "^0.5.10",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.14.2",
"typescript": "^3.3.3"
},
"nyc": {
"check-coverage": false,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"include": [
"src/**/*"
],
"exclude": [
"test"
],
"reporter": [
"lcov",
"text-summary"
],
"extension": [
".ts",
".tsx"
],
"sourceMap": true,
"instrument": true,
"all": true
}
}