-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "plaid-ynab",
"version": "1.0.0",
"description": "Import transactions via Plaid to YNAB",
"engines": {
"node": "10.14.0"
},
"main": "build/import.js",
"bin": {
"import": "build/import.js"
},
"scripts": {
"test": "nyc mocha -r ts-node/register src/**/*.spec.ts",
"lint": "eslint src/**/*.ts",
"start": "node build/import.js",
"import": "node build/import.js",
"build": "tsc",
"postinstall": "npm run build"
},
"author": "Colm Doyle",
"license": "MIT",
"dependencies": {
"axios": "^0.20.0",
"dotenv": "^8.2.0",
"moment": "^2.27.0",
"plaid": "^7.0.0",
"typescript": "^3.9.6",
"ynab": "^1.20.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.48",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"chai": "^4.2.0",
"eslint": "^6.7.0",
"eslint-config-prettier": "^6.11.0",
"mocha": "^6.2.3",
"nyc": "^14.1.1",
"ts-node": "^8.10.2"
}
}