-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
{
"name": "ripple-rest",
"version": "1.6.0",
"description": "A RESTful API for submitting payments and monitoring accounts on the Ripple network.",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/istanbul test ./node_modules/.bin/_mocha -- --ui tdd --reporter spec --timeout 10000 --slow 500 test/*-test.js test/unit/*-test.js",
"start": "node server/server.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/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.2.9",
"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.12.3",
"ripple-lib-transactionparser": "^0.3.2",
"sqlite3": "^3.0.2",
"supertest": "^0.13.0",
"winston": "^1.0.0"
},
"devDependencies": {
"assert-diff": "^0.0.4",
"chai": "^1.10.0",
"coveralls": "^2.10.0",
"istanbul": "^0.2.10",
"mocha": "^2.1.0",
"require-directory": "^1.2.0",
"sinon": "~1.10.0",
"sinon-chai": "^2.5.0",
"ws": "^0.4.32"
}
}