-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
39 lines (39 loc) · 936 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
{
"name": "dwolla-v2",
"version": "3.4.0",
"description": "Dwolla V2 API client",
"main": "src/index.js",
"files": [
"src/**/*.js",
"src/*.js",
"src/*.d.ts"
],
"scripts": {
"test": "NODE_ENV=test mocha test/**",
"eslint": "eslint src/ test/",
"prettier-check": "npm run _prettier -- --check",
"prettier-write": "npm run _prettier -- --write",
"_prettier": "prettier src/*.js src/**/*.js test/*.js test/**/*.js"
},
"keywords": [
"Dwolla"
],
"author": "Stephen Ausman <stephen@dwolla.com>",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^5.13.0",
"form-data": "^2.5.0",
"mocha": "^6.2.3",
"nock": "^9.6.1",
"prettier": "^1.18.2",
"sinon": "^6.1.5"
},
"dependencies": {
"bluebird": "^3.5.1",
"form-urlencoded": "^4.5.1",
"invariant": "^2.2.4",
"node-fetch": "^2.6.2"
}
}