-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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": "broker-scribe",
"version": "0.1.0",
"description": "Import 1099 transactions into TurboTax Online",
"main": "index.js",
"repository": "https://github.com/dguo/broker-scribe.git",
"author": "Danny Guo <dannyguo91@gmail.com>",
"license": "MIT",
"scripts": {
"format": "prettier --write \"./**/*.{js,json}\"",
"format:check": "prettier --list-different \"./**/*.{js,json}\"",
"lint": "eslint *.js",
"start": "node index.js"
},
"dependencies": {
"neat-csv": "^4.0.0",
"prompts": "^2.0.4",
"puppeteer": "^1.14.0"
},
"devDependencies": {
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"prettier": "^1.18.2"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"prettier"
],
"parserOptions": {
"ecmaVersion": 8
}
},
"prettier": {
"bracketSpacing": false,
"tabWidth": 4
}
}