forked from bullhorn/dataloader-faker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 841 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
{
"name": "dataloader-faker",
"version": "1.0.0",
"description": "Generate massive amounts of realistic fake CSV data for testing",
"license": "AGPL-3.0",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "npm start -- --template test/templateFile.csv --output test/outputFile.csv --rows 10",
"generate": "npm start -- --template templates/lookup --output generated --rows 10 && npm start -- --template templates --output generated --rows "
},
"repository": {
"type": "git",
"url": "git+https://github.com/bullhorn/dataloader-faker.git"
},
"bugs": {
"url": "https://github.com/bullhorn/dataloader-faker/issues"
},
"homepage": "https://github.com/bullhorn/dataloader-faker#readme",
"dependencies": {
"faker": "5.1.0",
"fast-csv": "4.3.6",
"yargs": "16.2.0"
}
}