-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.35 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
{
"name": "ilp-protocol-lsd",
"version": "1.0.0",
"description": "Loopback Server Discovery",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "nyc mocha",
"docs:api": "jsdoc2md --global-index-format none \"src/**/*.js\" --template docs/README.template.md > docs/README.intermediate.md",
"docs:toc": "md-toc-filter docs/README.intermediate.md > README.md",
"docs": "npm run docs:api && npm run docs:toc",
"integration": "integration-loader && integration all"
},
"engines": {
"node": ">=8.4.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/interledgerjs/ilp-protocol-lsd.git"
},
"keywords": [
"interledger",
"ilp",
"loopback",
"server discovery"
],
"author": "Interledger Team <info@interledger.org>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/interledgerjs/ilp-protocol-lsd/issues"
},
"homepage": "https://github.com/interledgerjs/ilp-protocol-lsd#readme",
"dependencies": {
"ilp-protocol-lt": "^1.0.0",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.12.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"five-bells-integration-test-loader": "^1.3.0",
"ghooks": "^2.0.2",
"ilp-plugin-btp": "^1.1.9",
"ilp-plugin-mini-accounts": "^3.4.3",
"jsdoc-to-markdown": "^3.0.4",
"md-toc-filter": "^0.9.0",
"mocha": "^4.0.1",
"mock-require": "^3.0.2",
"nock": "^9.0.2",
"nyc": "^11.4.1",
"sinon": "^4.1.3",
"source-map-support": "^0.5.0",
"validate-commit-msg": "^2.6.1"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"five-bells-integration-test-loader": {
"module": "five-bells-integration-test",
"repo": "interledgerjs/five-bells-integration-test"
}
},
"nyc": {
"check-coverage": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true
}
}