-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.74 KB
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
{
"name": "bsparser",
"version": "1.0.0",
"description": "Bank statement parser.",
"main": "index.js",
"scripts": {
"dev": "tsc -w",
"compile": "tsc",
"start": "node ./dist",
"test": "jest \"test/.*\"",
"jest-w": "jest \"test/.*\" --watchAll",
"cuc": "cucumber-js",
"coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4rgc/bsparser.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/4rgc/bsparser/issues"
},
"homepage": "https://github.com/4rgc/bsparser#readme",
"dependencies": {
"@babel/runtime": "^7.14.0",
"chalk": "^4.1.1",
"csv": "^5.5.3",
"jszip": "^3.6.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"prompt": "^1.1.0",
"xlsx": "^0.16.9"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@cucumber/cucumber": "^7.2.1",
"@types/concat-stream": "^1.6.0",
"@types/cross-spawn": "^6.0.2",
"@types/csv-parse": "^1.2.2",
"@types/deep-equal": "^1.0.1",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.170",
"@types/prompt": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"concat-stream": "^2.0.0",
"coveralls": "^3.1.0",
"deep-equal": "^0.2.2",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"ts-node": "^10.0.0"
}
}