This repository has been archived by the owner on Jun 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.82 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
{
"name": "@jorisnoo/csv2actual",
"description": "Import transactions from csv files to accounts in Actual",
"author": "Joris Noordermeer @jorisnoo",
"bin": {
"csv2actual": "./bin/run"
},
"bugs": {
"url": "https://github.com/jorisnoo/csv2actual/issues"
},
"dependencies": {
"@actual-app/api": "^1.1.3",
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.3",
"@sindresorhus/slugify": "^1.1.2",
"cli-ux": "^5.6.3",
"configstore": "^5.0.1",
"inquirer": "^8.1.3",
"moment": "^2.29.1",
"papaparse": "^5.3.1",
"tslib": "^2.3.1"
},
"devDependencies": {
"@oclif/tslint": "^3",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/npm": "^7.1.3",
"@types/configstore": "^5.0.1",
"@types/inquirer": "^8.1.1",
"@types/node": "^16.9.1",
"semantic-release": "^17.4.7",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=12"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/jorisnoo/csv2actual",
"keywords": [
"oclif",
"actualbudget",
"actualapp",
"csv-import",
"zkb"
],
"license": "Unlicense",
"main": "lib/index.js",
"oclif": {
"bin": "csv2actual"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jorisnoo/csv2actual.git"
},
"scripts": {
"lint": "tslint -p . -t stylish",
"lint-fix": "tslint -p . -t stylish --fix",
"posttest": "npm run-script lint",
"prepack": "rm -rf lib && tsc -b",
"test": "echo NO TESTS"
},
"types": "lib/index.d.ts"
}