This repository has been archived by the owner on May 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
97 lines (97 loc) · 2.68 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
{
"name": "ilp-protocol-stream",
"version": "2.7.1",
"description": "Interledger Transport Protocol for sending multiple streams of money and data over ILP.",
"main": "dist/src/index.js",
"browser": {
"./dist/src/util/crypto-node.js": "./dist/src/util/crypto-browser.js",
"./src/util/crypto-node.ts": "./src/util/crypto-browser.ts",
"./dist/src/pool.js": false,
"./src/pool.ts": false,
"./dist/src/server.js": false,
"./src/server.ts": false
},
"types": "dist/src/index.d.ts",
"files": [
"dist/src/**/*.js",
"dist/src/**/*.js.map",
"dist/src/**/*.d.ts"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"lint": "tslint --project .",
"test": "TS_NODE_PROJECT='./tsconfig.test.json' mocha",
"test-cover": "TS_NODE_PROJECT='./tsconfig.test.json' nyc --extension .ts mocha",
"doc": "typedoc --options typedoc.js src/index.ts src/connection.ts src/stream.ts --theme node_modules/typedoc-neo-theme/bin/default",
"publish-docs": "npm run doc && node scripts/publish-docs.js",
"codecov": "codecov"
},
"keywords": [
"interledger",
"ilp",
"streaming",
"payments",
"micropayments",
"chunked"
],
"author": "Evan Schwartz <evan@ripple.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/interledgerjs/ilp-protocol-stream.git"
},
"dependencies": {
"@types/node": "^10.14.22",
"ilp-logger": "^1.3.1",
"ilp-packet": "^3.0.9",
"ilp-protocol-ildcp": "^2.1.4",
"long": "^4.0.0",
"oer-utils": "^5.0.1",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/chai-as-promised": "^7.1.0",
"@types/long": "^4.0.0",
"@types/mocha": "^7.0.2",
"@types/puppeteer": "^1.19.1",
"@types/sinon": "^5.0.1",
"@types/uuid": "^3.4.6",
"@types/webpack": "^4.41.12",
"benchmark": "^2.1.4",
"bignumber.js": "^7.2.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.0.2",
"gh-pages": "^2.0.0",
"ilp-plugin": "^3.2.1",
"ilp-plugin-btp": "^1.4.1",
"ilp-plugin-mini-accounts": "^4.2.0",
"mocha": "^7.1.2",
"nyc": "^15.0.0",
"puppeteer": "^1.19.0",
"sinon": "^6.0.1",
"source-map-support": "^0.5.6",
"ts-loader": "^6.1.0",
"ts-node": "^7.0.1",
"tslint": "^5.10.0",
"tslint-config-standard": "^8.0.0",
"typedoc": "^0.15.0",
"typedoc-neo-theme": "^1.0.7",
"typescript": "^3.6.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.7"
},
"nyc": {
"check-coverage": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"reporter": [
"lcov",
"text-summary"
]
}
}