-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "jsons-to-cnab",
"version": "1.1.19",
"description": "Convert JSON data and map to cnab file",
"author": "Jéssica Moura Ribeiro",
"license": "MIT",
"main": "index.js",
"scripts": {
"tests": "mocha --inspect-brk=9231 --recursive \"./tests/**/*.test.js\"",
"travis": "nyc --reporter lcov mocha --recursive \"./tests/**/*.test.js\"",
"coverage": "nyc --reporter html mocha --recursive \"./tests/**/*.test.js\"",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jessicamrbr/jsons-to-cnab.git"
},
"homepage": "https://github.com/jessicamrbr/jsons-to-cnab#readme",
"keywords": [
"cnab",
"json",
"parse",
"convert"
],
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1"
},
"dependencies": {
"array-flatten": "^2.1.2",
"csvtojson": "^2.0.8",
"lodash": "^4.17.11"
}
}