forked from eshaham/israeli-ynab-updater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.36 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
{
"name": "israeli-ynab-updater",
"version": "0.0.1",
"description": "A tool for updating YNAB using israeli-bank-scrapers",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src",
"start": "node_modules/babel-cli/bin/babel-node.js src",
"credentials": "node_modules/babel-cli/bin/babel-node.js src -m credentials"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eshaham/israeli-ynab-updater.git"
},
"author": "Elad Shaham",
"license": "MIT",
"bugs": {
"url": "https://github.com/eshaham/israeli-ynab-updater/issues"
},
"homepage": "https://github.com/eshaham/israeli-ynab-updater#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.26.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-plugin-import": "^2.7.0",
"pre-commit": "^1.2.2"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"inquirer": "^4.0.1",
"israeli-bank-scrapers": "^0.4.0",
"json2csv": "^3.11.5",
"jsonfile": "^4.0.0",
"moment": "^2.19.3",
"yargs": "^10.0.3"
}
}