-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"name": "postcsv",
"version": "0.0.1",
"description": "Makes POST requests for each row in a CSV file",
"scripts": {
"test": "node ./bin/cli --csv ./test/fixtures/test.csv --url http://postb.in/TaedrSkb --rps 10"
},
"bin": "./bin/cli.js",
"bugs": "https://github.com/toddheslin/postcsv/issues",
"homepage": "https://github.com/toddheslin/postcsv",
"repository": "https://github.com/toddheslin/postcsv",
"keywords": [
"csv",
"rest",
"http",
"csv to json"
],
"author": "Todd Heslin <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"prettier": "^1.14.2"
},
"dependencies": {
"axios": "^0.18.0",
"commander": "^2.17.1",
"csvtojson": "^2.0.8",
"promise-throttle": "^1.0.0"
}
}