-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 980 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 980 Bytes
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
{
"name": "go-cardless",
"version": "1.0.0",
"description": "Basic NodeJS go cardless SDK",
"main": "lib/index.js",
"scripts": {
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha test/*.test.js test/**/*.test.js -- -r should -r should-sinon -r ./test/_init.js",
"standard": "node ./node_modules/.bin/standard",
"test": "./node_modules/.bin/mocha -r should -r should-sinon -r ./test/_init.js test/*.test.js test/**/*.test.js"
},
"author": "90Tech SAS <contact@90tech.fr> (https://www.90tech.fr/)",
"contirubtors": [
"flogou <florent.gouget@gmail.com>",
"Jonathan ARNAULT <contact@jonathanarnault.com>"
],
"license": "MIT",
"dependencies": {
"joi": "9.0.4",
"lodash": "^4.15.0",
"request": "2.74.0"
},
"devDependencies": {
"async": "^2.0.1",
"istanbul": "0.4.5",
"mocha": "3.0.2",
"should": "11.1.0",
"should-sinon": "0.0.5",
"sinon": "1.17.5",
"standard": "8.0.0"
}
}