-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.07 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.07 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
{
"name": "loopback-connector-recurly",
"version": "1.0.0",
"description": "A Loopback connector for the Recurly API",
"main": "lib/index.js",
"keywords": [
"loopback",
"strongloop"
],
"author": "Tom Kirkpatrick",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fullcube/loopback-connector-recurly.git"
},
"dependencies": {
"debug": "2.x",
"lodash": "latest"
},
"devDependencies": {
"bluebird": "2.9.24",
"chai": "latest",
"jscs": "1.13.x",
"jshint": "latest",
"loopback": "2.x",
"loopback-connector-rest": "git://github.com/mrfelton/loopback-connector-rest.git#427fdc42ede895773c375ce360325cd4f485604c",
"loopback-boot": ">=2.8.2",
"loopback-explorer": ">=1.8.0",
"loopback-testing": "1.x",
"mocha": "latest",
"mocha-sinon": "latest",
"sinon": "latest",
"sinon-chai": "latest"
},
"scripts": {
"lint": "jscs lib && jshint lib",
"test": "mocha -R spec --timeout 10000 test/*.js",
"test:watch": "npm run test -- -w",
"pretest": "npm run lint"
}
}