forked from ripple/ripple-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.72 KB
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
63
64
65
66
67
{
"name": "ripple-rest",
"version": "1.2.4",
"author": "Evan Schwartz <evan@ripple.com>",
"contributors": [
"wltsmrz <wltsmrz@gmail.com>",
"Geert Weening <geertweening@gmail.com>",
"Roberto Catini <roberto.catini@gmail.com>",
"Yeechan Lu <github@orzfly.com> (http://orzfly.com)"
],
"scripts": {
"postinstall": "./node_modules/.bin/grunt",
"test": "NODE_ENV=test ./node_modules/.bin/istanbul test ./node_modules/.bin/mocha -- --reporter spec --timeout 10000 --slow 500 test/*-test.js",
"start": "node 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-rest",
"ripple",
"ripple-lib",
"payments",
"rest",
"restful"
],
"engines": {
"node": "~0.10.22"
},
"dependencies": {
"async": "~0.2.9",
"bignumber.js": "~1.4.0",
"body-parser": "^1.7.0",
"db-migrate": "~0.6.4",
"express": "^4.8.7",
"grunt": "~0.4.5",
"grunt-db-migrate": "~0.2.0",
"jayschema": "*",
"lodash": "~2.4.1",
"morgan": "^1.3.0",
"nconf": "~0.6.9",
"node-uuid": "~1.4.1",
"pg.js": "~3.2.0",
"ripple-lib": "~0.8.2-rc1",
"sequelize": "~2.0.0-dev1",
"sqlite3": "~2.2.0",
"supertest": "^0.13.0",
"winston": "^0.7.3"
},
"devDependencies": {
"chai": "*",
"clone": "~0.1.15",
"coveralls": "~2.10.0",
"grunt-cli": "~0.1.13",
"grunt-contrib-jshint": "~0.8.0",
"grunt-simple-mocha": "*",
"istanbul": "^0.2.10",
"mocha": "*",
"require-directory": "^1.2.0",
"sinon": "~1.10.0",
"sinon-chai": "~2.5.0",
"ws": "^0.4.32"
}
}