-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
33 lines (33 loc) · 843 Bytes
/
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
{
"name": "mt940js",
"version": "1.3.5",
"description": "javascript mt940 bank statement parser",
"main": "index.js",
"scripts": {
"test": "mocha",
"testw": "mocha --watch",
"testcov": "nyc mocha",
"lint": "eslint lib test cli.js index.js",
"doc": "jsdoc -c jsdoc.json",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"coverage": "nyc --reporter=html --reporter=text mocha"
},
"keywords": [
"mt940",
"swift",
"bank",
"statement",
"parser"
],
"author": "Alexander Tsybulsky",
"license": "Apache-2.0",
"homepage": "https://github.com/a-fas/mt940js.git",
"repository": "https://github.com/a-fas/mt940js.git",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.3.0",
"jsdoc": "^3.6.4",
"mocha": "^9.0.3",
"nyc": "^15.1.0"
}
}