-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
92 lines (92 loc) · 2.19 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
{
"name": "ilp-protocol-psk2",
"version": "0.5.0",
"description": "Implementation of the ILP Pre-Shared Key V2 Transport Protocol",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"pretest": "npm run build",
"test": "nyc mocha",
"lint": "tslint --project .",
"codecov": "codecov",
"doc": "typedoc --options typedoc.js src",
"publish-docs": "npm run doc && node scripts/publish-docs.js"
},
"files": [
"src/*.js",
"src/*.js.map",
"src/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/interledgerjs/ilp-protocol-psk2.git"
},
"keywords": [
"interledger",
"ilp",
"transport",
"streaming",
"chunked",
"payment"
],
"author": "Evan Schwartz <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/interledgerjs/ilp-protocol-psk2/issues"
},
"homepage": "https://github.com/interledgerjs/ilp-protocol-psk2#readme",
"dependencies": {
"bignumber.js": "^5.0.0",
"debug": "^3.1.0",
"ilp-compat-plugin": "^2.0.3",
"ilp-packet": "^2.1.2",
"ilp-protocol-ildcp": "^1.0.0",
"long": "^3.2.0",
"oer-utils": "^1.3.2"
},
"devDependencies": {
"@types/bignumber.js": "^4.0.3",
"@types/chai": "^4.0.10",
"@types/debug": "0.0.30",
"@types/long": "^3.0.32",
"@types/mocha": "^2.2.45",
"@types/mock-require": "^2.0.0",
"@types/node": "^8.5.2",
"@types/sinon": "^4.1.2",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"gh-pages": "^1.1.0",
"ilp-plugin-btp": "^1.1.6",
"mocha": "^4.1.0",
"mocha-typescript": "^1.1.12",
"mock-require": "^2.0.2",
"nyc": "^11.4.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",
"typedoc": "^0.9.0",
"typescript": "^2.6.2"
},
"nyc": {
"check-coverage": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true
}
}