-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 1.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
{
"name": "ilp-protocol-paystream",
"version": "0.1.0",
"description": "Interledger payment streams",
"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 ."
},
"files": [
"src/index.js*",
"src/index.d.ts"
],
"keywords": [
"interledger",
"ilp",
"payment",
"stream",
"micropayment"
],
"author": "Evan Schwartz <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@types/debug": "0.0.30",
"@types/long": "^3.0.32",
"@types/node": "^9.4.5",
"bignumber.js": "^6.0.0",
"debug": "^3.1.0",
"eventemitter3": "^3.0.1",
"ilp-protocol-psk2": "^0.5.0",
"long": "^4.0.0",
"oer-utils": "^1.3.4",
"source-map-support": "^0.5.3"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/chai-as-promised": "^7.1.0",
"@types/lolex": "^2.1.1",
"@types/mocha": "^2.2.48",
"@types/sinon": "^4.1.3",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"ilp-plugin-btp": "^1.1.8",
"ilp-protocol-ildcp": "^1.0.0",
"lolex": "^2.3.2",
"mocha": "^5.0.0",
"mocha-typescript": "^1.1.12",
"nyc": "^11.4.1",
"sinon": "^4.3.0",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.7.1"
},
"nyc": {
"check-coverage": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true
}
}