-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.52 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
98
{
"name": "ilp-transport-grpc",
"version": "0.0.0",
"description": "gRPC-based protocol for exchanging ILP packets",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"files": [
"src/lib/**/*.ts",
"src/lib/**/*.ts",
"src/lib/**/*.proto",
"dist/lib/**/*.js",
"dist/lib/**/*.proto",
"dist/lib/**/*.js.map",
"dist/lib/**/*.d.ts",
"dist/doc"
],
"scripts": {
"clean": "rm -Rf .nyc_output && rm -Rf coverage && rm -Rf doc && rm -Rf lib ",
"build": "tsc",
"lint": "tslint --project .",
"pretest": "tsc --build",
"test": "nyc mocha --ui mocha-typescript --require source-map-support/register --recursive dist/test",
"doc": "typedoc --options typedoc.js src/lib/index.ts",
"codecov": "codecov",
"prepare": "npm run build",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run lint && npm test && npm run doc"
},
"engines": {
"node": ">=8.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/interledgerjs/ilp-protocol-grpc.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-protocol-grpc/issues"
},
"homepage": "https://github.com/interledgerjs/ilp-protocol-grpc#readme",
"dependencies": {
"@grpc/proto-loader": "^0.3.0",
"grpc": "^1.16.1",
"ilp-logger": "^1.1.2",
"oer-utils": "^3.2.0",
"verror": "^1.10.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/debug": "^0.0.31",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.9",
"@types/node-fetch": "^2.1.4",
"@types/sinon": "^5.0.6",
"@types/verror": "^1.10.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.1.0",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"nyc": "^13.1.0",
"sinon": "^7.1.1",
"source-map-support": "^0.5.9",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.13.0",
"typescript": "^3.1.6"
},
"nyc": {
"check-coverage": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"include": [
"dist/lib/**/*.js"
],
"exclude": [
"dist/test/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true
}
}