-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "statement2csv",
"description": "Convert your bank statement PDF to a standard CSV — Edit",
"author": "Ardalan Naghshineh",
"license": "GPL-3.0",
"homepage": "https://ardalann.github.io/statement2csv/",
"bugs": {
"url": "https://github.com/ardalann/statement2csv/issues"
},
"main": "index.js",
"scripts": {
"start": "react-scripts start",
"build": "rm -rf docs && react-scripts build && mv build docs",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ardalann/statement2csv.git"
},
"version": "0.1.0",
"private": true,
"dependencies": {
"moment": "^2.24.0",
"pdfjs-dist": "^2.1.266",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"react-scripts": "^3.0.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}