-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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
{
"name": "homebank-apostle",
"version": "1.0.0",
"description": "Converts exported transaction statements to Homebank format for import.",
"main": "./lib/index/js",
"bin": {
"hba": "lib/index.js"
},
"scripts": {
"build": "tsc -p .",
"create": "npm run build && npm run test",
"local": "sudo npm i -g",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"run:dev:watch": "nodemon --watch 'src/**/*.ts' --exec 'DEBUG=* ts-node' src/index.ts",
"run:dev": "DEBUG=* ts-node src/index.ts",
"run:prod:watch": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"run:prod": "ts-node src/index.ts",
"test:watch": "jest --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TimeBandit/homebank-apostle.git"
},
"keywords": [
"homebank",
"banking",
"csv",
"transactions"
],
"author": "Imran Nazir ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/TimeBandit/homebank-apostle/issues"
},
"homepage": "https://github.com/TimeBandit/homebank-apostle#readme",
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@babel/preset-typescript": "^7.12.16",
"@types/jest": "^26.0.20",
"@types/line-reader": "^0.0.33",
"@types/mock-fs": "^4.13.0",
"@types/node": "^14.14.25",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"mock-stdin": "^1.0.0",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"dependencies": {
"@types/papaparse": "^5.2.5",
"enquirer": "^2.3.6",
"line-reader": "^0.4.0",
"logging": "^3.3.0",
"mock-fs": "^4.13.0",
"nanoid": "^3.1.23",
"papaparse": "^5.3.0"
}
}