forked from Dwolla/dwolla-v2-node
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.12 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
71
72
73
74
75
{
"name": "dwolla-v2",
"version": "4.0.0-ts-alpha.0",
"description": "Dwolla Node API Wrapper",
"license": "MIT",
"author": "Dwolla, Inc.",
"keywords": [
"Dwolla"
],
"files": [
"bundle/dwolla-v2.d.ts",
"bundle/dwolla-v2.mjs",
"bundle/dwolla-v2.js"
],
"main": "./bundle/dwolla-v2.js",
"types": "./bundle/dwolla-v2.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"bundle": "rollup -c rollup.config.js",
"clean": "rimraf build bundle",
"cleanbundle": "pnpm clean && pnpm build && pnpm bundle",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:fix": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint:check": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --ignore-path .eslintignore",
"lint:fix": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --fix --ignore-path .eslintignore",
"test": "cross-env NODE_ENV=test jest"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^27.5.0",
"@types/jest-in-case": "^1.0.5",
"@types/node": "^17.0.31",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"cross-env": "^7.0.3",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin": "^1.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"form-data": "^4.0.0",
"jest": "^28.0.3",
"jest-in-case": "^1.0.2",
"nock": "^13.2.4",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.71.1",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^28.0.1",
"ts-node": "^10.7.0",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"dependencies": {
"form-urlencoded": "^6.0.6",
"node-fetch": "~2.6.7"
},
"peerDependencies": {
"form-data": "^4.0.0"
},
"peerDependenciesMeta": {
"form-data": {
"optional": true
}
},
"exports": {
".": {
"import": "./bundle/dwolla-v2.mjs",
"require": "./bundle/dwolla-v2.js",
"types": "./bundle/dwolla-v2.d.ts"
}
}
}