-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.13 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.13 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
{
"name": "lc-api",
"version": "0.1.3",
"description": "A Promise-based NodeJS implementation of the LendingClub API",
"main": "lib/client.js",
"scripts": {
"test": "gulp test",
"prepublish": "gulp prepublish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryan-rowland/lending-club.git"
},
"keywords": [
"lendingclub",
"lc",
"api",
"promises"
],
"author": "Ryan Rowland",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryan-rowland/lending-club/issues"
},
"homepage": "https://github.com/ryan-rowland/lending-club#readme",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-delete-lines": "0.0.7",
"gulp-eslint": "^2.0.0",
"gulp-mocha": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"jsdox": "^0.4.9",
"mocha": "^2.4.5",
"rimraf": "^2.5.2",
"run-sequence": "^1.1.5",
"sinon": "^1.17.3"
},
"dependencies": {
"mozart": "^0.1.0",
"path": "^0.12.7",
"request": "^2.69.0",
"url": "^0.11.0"
}
}