-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.02 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
{
"name": "ilp-router",
"version": "1.0.0",
"description": "Routing Library for Interledger modules",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/**/*.js",
"build/**/*.js.map",
"build/**/*.d.ts",
"build/doc"
],
"scripts": {
"clean": "rm -Rf .nyc_output && rm -Rf coverage && rm -Rf build ",
"build": "tsc",
"lint": "tslint --project .",
"pretest": "tsc --build",
"test": "nyc mocha --require ts-node/register --ui mocha-typescript --require source-map-support/register test/**/*.ts",
"doc": "typedoc --options typedoc.js src/index.ts",
"codecov": "codecov",
"preversion": "npm run lint && npm test",
"prepublishOnly": "npm run lint && npm test && npm run doc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/interledgerjs/ilp-logger.git"
},
"author": "Interledger Team <info@interledger.org>",
"license": "Apache-2.0",
"dependencies": {
"@types/debug": "^0.0.31",
"debug": "^4.1.0",
"ilp-packet": "^3.0.8",
"ilp-protocol-ccp": "^1.1.1",
"lodash": "^4.17.11",
"rxjs": "^6.4.0",
"supports-color": "^5.5.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.5",
"@types/sinon": "^5.0.7",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.1.0",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"nyc": "^13.1.0",
"sinon": "^7.1.1",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.13.0",
"typescript": "^3.1.6"
},
"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
}
}