-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 2.77 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "chaca",
"version": "2.0.0",
"description": "Create and export mock data with your rules",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"engines": {
"node": ">=16"
},
"exports": "./lib/index.js",
"bin": {
"chaca": "./lib/bin/chaca.js"
},
"files": [
"lib/**/*",
"LICENSE",
"CONTRIBUTING.md",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"prepare": "husky install",
"clean": "rm -rf ./lib",
"build": "npm run fix && npm run build:lib",
"build:lib": "npm run clean && tsc --build --verbose",
"test": "vitest test",
"test:coverage": "rm -rf ./data && vitest run --coverage",
"test:field-types": "vitest test/library/field-types",
"test:cases": "vitest test/library/example-cases",
"test:modules": "vitest test/modules",
"test:library": "vitest test/library",
"test:export": "vitest test/library/extensions",
"test:utils": "vitest test/library/utils",
"test:cli": "vitest test/cli",
"prettier-format": "prettier --config .prettierrc src/**/*.ts --write",
"lint-fix": "eslint --fix src/**/*.ts",
"lint": "eslint src/**/*.ts",
"fix": "npm run lint-fix && npm run prettier-format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chacaponquin/chaca.git"
},
"keywords": [
"chaca",
"fake-data",
"generate data",
"mock",
"random data",
"data",
"fake-data-generator",
"relational data",
"generator"
],
"author": "chacaponquin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/js-yaml": "^4.0.9",
"@types/json2csv": "^5.0.3",
"@types/node": "^18.8.0",
"@types/shelljs": "^0.8.15",
"@types/uuid": "^8.3.4",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@vitest/coverage-istanbul": "^2.1.4",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-file-extension-in-import-ts": "^1.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.7.1",
"shelljs": "^0.8.5",
"ts-node": "^10.9.1",
"tslib": "^2.6.0",
"tsx": "^3.11.0",
"typescript": "^4.8.4",
"vitest": "^2.1.2"
},
"dependencies": {
"@paralleldrive/cuid2": "^2.2.2",
"adm-zip": "^0.5.9",
"change-case-all": "^2.1.0",
"js-yaml": "^4.1.0",
"json-2-csv": "^5.5.6",
"lorem-ipsum": "^2.0.8",
"nanoid-cjs": "^0.0.7",
"ulid": "^2.3.0",
"uuid": "^10.0.0",
"yargs": "^17.7.2"
},
"bugs": {
"url": "https://github.com/Chacaponquin/chaca/issues"
},
"homepage": "https://chaca-doc.vercel.app"
}