-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.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
{
"name": "five-bells-sender",
"version": "10.2.0",
"description": "A basic Five Bells sending client library",
"keywords": [
"interledger",
"five-bells",
"ilp"
],
"main": "src/index.js",
"scripts": {
"lint": "eslint src test",
"test": "istanbul test -- _mocha",
"build": "babel src --out-dir babel",
"integration": "integration all",
"report-coverage": "codecov"
},
"repository": {
"type": "git",
"url": "[email protected]:interledgerjs/five-bells-sender.git"
},
"author": "Ripple <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/interledgerjs/five-bells-sender/issues"
},
"homepage": "https://github.com/interledgerjs/five-bells-sender#readme",
"dependencies": {
"bignumber.js": "^2.3.0",
"co": "^4.6.0",
"five-bells-condition": "^3.0.1",
"five-bells-shared": "~16.1.0",
"node-uuid": "^1.4.7",
"superagent": "^1.5.0"
},
"devDependencies": {
"babel": "^6.3.13",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.17",
"babel-eslint": "^4.1.6",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.19",
"co-mocha": "^1.1.2",
"codecov": "^1.0.1",
"eslint": "^1.3.1",
"eslint-config-standard": "^4.3.1",
"eslint-plugin-standard": "^1.3.0",
"five-bells-integration-test": "^4.1.2",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"nock": "^7.0.2",
"spec-xunit-file": "0.0.1-3"
}
}