-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.19 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
45
46
47
48
49
50
51
{
"name": "mock2csv",
"version": "0.0.7",
"description": "Create Mock data and save it as CSV file",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"test": "vitest",
"clean": "rm -rf src/*.js src/*.d.ts ./*.csv dist",
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JuneParkCode/Mock2CSV.git"
},
"type": "module",
"keywords": [
"fake",
"faker",
"csv",
"mock",
"mockdata",
"mockcsv",
"dummy",
"dummydata"
],
"author": "Photogrammer",
"license": "MIT",
"bugs": {
"url": "https://github.com/JuneParkCode/Mock2CSV/issues"
},
"homepage": "https://github.com/JuneParkCode/Mock2CSV#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.12.11",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"bcryptjs": "^2.4.3",
"moment-timezone": "^0.5.45"
}
}