-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
54 lines (54 loc) · 1.88 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
{
"name": "rippled-historical-database",
"version": "2.4.2",
"description": "SQL database storing historical data from Rippled.",
"repository": {
"type": "git",
"url": "git://github.com/ripple/rippled-historical-database.git"
},
"scripts": {
"postinstall": "node install.js",
"pretest": "node_modules/.bin/mocha --ui tdd -R spec test/setup.removeTables.js test/setup.createTables.js test/setup.importLedgers.js --logLevel 3",
"test": "node_modules/.bin/mocha --ui tdd -R spec test/setup.api.js test/test.*.js --logLevel 0",
"test:limit": "node_modules/.bin/mocha --ui tdd -R spec test/test.rateLimit.js",
"lint": "if ! [ -f eslintrc ]; then curl -o eslintrc 'https://raw.githubusercontent.com/ripple/javascript-style-guide/es6/eslintrc' >> eslintrc; fi; eslint -c eslintrc --rule {no-var:0} $(git --no-pager diff --name-only -M100% --diff-filter=AM --relative origin/HEAD | grep \".js$\")",
"start": "nodemon api/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"async": "^0.9.0",
"bignumber.js": "2.0.7",
"bluebird": "^2.3.4",
"body-parser": "^1.8.2",
"colors": "^1.1.2",
"compression": "^1.6.0",
"cors": "^2.5.0",
"cron": "^1.1.0",
"elliptic": "^6.2.3",
"eslint": "2.9.0",
"express": "^4.9.3",
"hbase": "^0.1.7",
"int64-buffer": "^0.1.1",
"mocha": "2.2.5",
"moment": "^2.9.0",
"nconf": "^0.6.9",
"nice-json2csv": "^0.2.0",
"nodemailer": "^1.4.0",
"nodemon": "^1.2.1",
"ratelimiter": "^3.0.3",
"redis": "^2.8.0",
"request": "^2.39.0",
"request-promise": "^2.0.0",
"ripple-address-codec": "2.0.1",
"ripple-binary-codec": "0.2.1",
"ripple-lib-transactionparser": "0.6.2",
"serve-favicon": "^2.3.0",
"sjcl": "^1.0.3",
"thrift": "^0.9.2",
"underscore": "^1.6.0",
"webhdfs": "^1.1.1",
"winston": "^0.8.3",
"ws": "^1.0.1"
}
}