-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.05 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
{
"name": "@italia-tools/faker",
"version": "0.1.2-alpha.1",
"description": "Italian-specific fake data generator based on Faker.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"files": ["dist"],
"main": "./dist/lib/index.cjs",
"module": "./dist/lib/index.mjs",
"types": "./dist/lib/types/index.d.ts",
"exports": {
".": {
"import": "./dist/lib/index.mjs",
"require": "./dist/lib/index.cjs",
"types": "./dist/lib/types/index.d.ts"
}
},
"keywords": [
"faker",
"faker-js",
"italian",
"fake-data",
"testing",
"synthetic-data",
"fiscal-code",
"codice-fiscale",
"italian-names",
"italian-cities",
"italian-data",
"mock-data",
"test-data",
"italy",
"italia",
"italian-faker",
"demographic-data",
"development",
"seed-data",
"cap",
"pec",
"italian-validation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dawit-io/it-faker.git"
},
"author": {
"name": "Dawit Abate",
"email": "[email protected]",
"url": "https://gojodigital.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dawit-io/it-faker/issues"
},
"homepage": "http://it-faker.gojodigital.com/",
"dependencies": {
"@faker-js/faker": "^9.3.0",
"commander": "^12.1.0",
"joi": "^17.13.3",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.10.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^2.1.8",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"rollup": "^4.28.1",
"tailwindcss": "^3.4.16",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vitepress": "^1.5.0",
"vitest": "^2.1.8",
"vue": "^3.3.4"
},
"bin": {
"it-faker": "./bin/cli.js"
}
}