-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
62 lines (62 loc) · 1.53 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
{
"name": "ilp-plugin-mini-accounts",
"version": "4.2.0",
"description": "Plugin that implements a mini ephemeral ledger",
"main": "index.js",
"types": "src/index.d.ts",
"scripts": {
"build": "tsc --project .",
"test": "mocha",
"prepare": "npm run build",
"pretest": "npm run build",
"lint": "tslint --project ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/interledgerjs/ilp-plugin-mini-accounts.git"
},
"keywords": [
"ilp",
"ledger",
"accounts",
"payments",
"crypto",
"digital",
"money"
],
"author": "Stefan Thomas <justmoon@members.fsf.org>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/interledgerjs/ilp-plugin-mini-accounts/issues"
},
"homepage": "https://github.com/interledgerjs/ilp-plugin-mini-accounts#readme",
"dependencies": {
"@types/node": "^10.5.1",
"@types/ws": "^6.0.0",
"btp-packet": "^2.2.0",
"ilp-logger": "^1.1.3",
"ilp-packet": "^3.0.8",
"ilp-plugin-btp": "^1.3.5",
"ilp-protocol-ildcp": "^2.0.1",
"ilp-store-memory": "^1.0.0",
"ilp-store-wrapper": "^2.0.0",
"int64": "0.0.5",
"ws": "^6.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.2.0",
"get-port": "^3.2.0",
"mocha": "^5.0.0",
"node-fetch": "^2.3.0",
"sinon": "^7.0.0",
"ts-node": "^7.0.0",
"tslint": "^5.14.0",
"tslint-config-standard": "^7.1.0",
"typescript": "^2.9.2"
},
"engines": {
"node": ">=8.3.0"
}
}