forked from ripple/ripple-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.34 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": "ripple-rest",
"version": "1.8.1-rc3",
"description": "A RESTful API for submitting payments and monitoring accounts on the Ripple network.",
"scripts": {
"test": "NODE_ENV=test istanbul test _mocha",
"start": "node server/server.js",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/ripple/ripple-rest.git"
},
"main": "index.js",
"keywords": [
"ripple",
"ripple-rest",
"ripple-lib",
"payments",
"rest",
"restful"
],
"engines": {
"node": "~0.10.22"
},
"dependencies": {
"async": "^0.9.0",
"bignumber.js": "^1.4.0",
"bluebird": "^2.3.4",
"body-parser": "^1.7.0",
"compression": "^1.3.0",
"express": "^4.8.7",
"jayschema": "^0.3.1",
"jayschema-error-messages": "^1.0.2",
"knex": "^0.7.6",
"lodash": "^3.6",
"morgan": "^1.3.0",
"nconf": "^0.6.9",
"node-uuid": "^1.4.1",
"ripple-lib": "^0.13.0-rc1",
"ripple-lib-transactionparser": "^0.4",
"simple-asyncify": "^0.1.0",
"sqlite3": "^3.0.2",
"winston": "^1.0.0"
},
"devDependencies": {
"assert-diff": "^0.0.4",
"coveralls": "^2.10.0",
"eventemitter2": "^0.4.14",
"istanbul": "^0.2.10",
"mocha": "^2.1.0",
"npm-shrinkwrap": "^5.3",
"supertest": "^0.13.0",
"ws": "^0.4.32"
}
}