forked from slashdotdash/node-ledger-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 915 Bytes
/
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
{
"name": "ledger-rest",
"version": "0.1.0",
"description": "REST web service API to access ledger cli data.",
"repository": {
"type": "git",
"url": "git://github.com/slashdotdash/node-ledger-rest.git"
},
"keywords": [
"ledger",
"accounting",
"finance"
],
"author": {
"name": "Ben Smith",
"email": "[email protected]"
},
"license": "MIT",
"bin": {
"ledger-rest": "bin/ledger-rest"
},
"main": "lib/ledger-rest",
"directories": {
"lib": "lib"
},
"scripts": {
"test": ""
},
"devDependencies": {
"chai": "~1.9.0",
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-mocha-test": "~0.9.0",
"mocha": "~1.17.1"
},
"dependencies": {
"JSONStream": "~0.8.0",
"ledger-cli": "0.1.1",
"lodash": "~2.4.1",
"restify": "~2.6.1"
},
"readmeFilename": "README.md"
}