-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
70 lines (70 loc) · 2.03 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "hyperwallet-sdk",
"version": "2.1.2",
"description": "A library to manage users, transfer methods and payments through the Hyperwallet API",
"main": "lib/index.js",
"dependencies": {
"form-data": "^3.0.0",
"node-jose": "^2.2.0",
"object-assign": "^4.1.0",
"superagent": "^4.0.0",
"uuid": "^8.3.1"
},
"scripts": {
"lint": "eslint ./src && eslint ./test && eslint ./examples",
"prod": "babel src -d lib",
"docs": "esdoc -c ./.esdoc.json",
"deploy-docs": "npm run docs && gh-pages -d docs",
"test": "npm run lint && npm run test-unit",
"test-unit": "nyc --reporter lcov mocha --require babel-core/register test/**/*.js test/*.js",
"test-coverage": "nyc npm run test",
"coveralls": "npm run test-coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublish-prod": "npm test && npm run prod",
"publish-please": "publish-please",
"prepublish": "publish-please guard"
},
"repository": {
"type": "git",
"url": "https://github.com/hyperwallet/node-sdk.git"
},
"keywords": [
"hyperwallet",
"sdk",
"rest",
"bankaccount",
"payout",
"creditcard",
"ach"
],
"author": "Florian Krauthan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hyperwallet/node-sdk/issues"
},
"homepage": "http://hyperwallet.github.io/node-sdk",
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"coveralls": "^3.0.2",
"dirty-chai": "^1.2.2",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.17.2",
"gh-pages": "^6.1.1",
"mocha": "^5.2.0",
"nock": "^10.0.4",
"nyc": "^15.0.0",
"publish-please": "^5.4.3",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
},
"engines": {
"node": ">=0.12",
"iojs": ">=1.0"
}
}