-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1009 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1009 Bytes
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
{
"name": "data-mock-builder",
"version": "1.1.2",
"description": "🧰 A fluent, type-safe mock object generator for test data creation, seeding, and API mocking.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jaktestowac/data-mock-builder.git"
},
"homepage": "https://github.com/jaktestowac/data-mock-builder",
"scripts": {
"build": "tsup",
"prepare": "tsup",
"test": "vitest run",
"npm:patch": "npm version patch",
"npm:minor": "npm version minor",
"npm:publish": "npm publish --access public"
},
"keywords": [
"mock",
"builder",
"test-data",
"typescript",
"mocking",
"automation",
"faker",
"data-generation"
],
"author": "jaktestowac.pl",
"license": "MIT",
"devDependencies": {
"tsup": "^7.2.0",
"typescript": "^5.3.3",
"prettier": "3.5.3",
"vitest": "^3.1.2"
}
}