-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
86 lines (86 loc) · 2.11 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
{
"name": "ilp",
"version": "14.0.0",
"description": "ILP client library for sending and receiving payments",
"main": "src/index.js",
"scripts": {
"postinstall": "npm run build",
"build": "tsc --project .",
"lint": "tslint --project .",
"lint:fix": "tslint --fix --project .",
"test": "istanbul test -- _mocha",
"integration": "integration-loader && integration all"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/interledgerjs/ilp.git"
},
"keywords": [
"interledger",
"ilp",
"payment request",
"crypto",
"condition",
"payments"
],
"author": "Interledger Team <info@interledger.org>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/interledgerjs/ilp/issues"
},
"homepage": "https://github.com/interledgerjs/ilp#readme",
"dependencies": {
"@types/express": "^4.16.0",
"@types/lodash.camelcase": "^4.3.4",
"@types/node": "^10.9.3",
"@types/node-fetch": "^2.1.2",
"bignumber.js": "^7.2.1",
"ilp-logger": "^1.0.2",
"ilp-packet": "^3.0.0",
"ilp-plugin-btp": "^1.2.1",
"ilp-protocol-ildcp": "^2.0.0",
"ilp-protocol-stream": "^1.8.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.4.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^3.1.0",
"five-bells-integration-test-loader": "^1.5.3",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"tslint": "^5.11.0",
"tslint-config-standard": "^7.1.0",
"typescript": "^3.0.3"
},
"config": {
"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
}
}