-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 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
44
{
"name": "append-er",
"version": "1.0.1",
"description": "Take a csv file in the request and spit out another",
"bin": {
"appndr": "./bin/appndr.js"
},
"main": "index.js",
"scripts": {
"test": "nyc mocha --recursive"
},
"keywords": [],
"author": "",
"license": "MIT",
"engines": {
"node": ">=10 <11",
"npm": ">=6"
},
"devDependencies": {
"axios-mock-adapter": "1.19.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"dirty-chai": "2.0.1",
"eslint": "7.18.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-mocha": "8.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"mocha": "8.2.1",
"nyc": "15.1.0",
"sinon": "9.2.4",
"sinon-chai": "3.5.0"
},
"dependencies": {
"@fast-csv/format": "4.3.5",
"axios": "0.21.1",
"commander": "7.0.0",
"configstore": "5.0.1",
"inquirer": "7.3.3",
"neat-csv": "6.0.1",
"strip-bom-stream": "4.0.0"
}
}