This repository has been archived by the owner on Oct 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
{
"name": "ilp-protocol-ildcp",
"version": "2.0.2",
"description": "Implementation of the Interledger Dynamic Configuration Protocol (IL-DCP)",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist; tsc",
"pretest": "rm -rf dist; tsc",
"lint": "tslint --project .",
"test": "nyc --extension .ts --reporter=text-summary mocha",
"watch": "mocha-typescript-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/interledgerjs/ilp-protocol-ildcp.git"
},
"keywords": [
"ilp",
"configuration",
"dhcp",
"autoconfig",
"detect",
"address",
"load",
"config"
],
"author": "Interledger Team <info@interledger.org>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/interledgerjs/ilp-protocol-ildcp/issues"
},
"homepage": "https://github.com/interledgerjs/ilp-protocol-ildcp#readme",
"dependencies": {
"debug": "^3.1.0",
"ilp-packet": "^3.0.9",
"oer-utils": "^5.0.1"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.9.4",
"@types/sinon": "^5.0.2",
"benchmark": "^2.1.4",
"bignumber.js": "^7.2.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"nyc": "^13.0.1",
"sinon": "^6.1.5",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.0",
"typescript": "^3.0.3"
}
}