-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 960 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 960 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
{
"name": "butlermock",
"version": "0.0.3",
"description": "Interface to JSON: Create mock data from typescript interfaces",
"type": "commonjs",
"types": "dist/index.d.ts",
"main": "dist/main.js",
"repository": {
"url": "https://github.com/Devrax/Butlermock-package",
"type": "git"
},
"scripts": {
"start": "ts-node src/index.ts",
"test": "ts-node test/index.ts"
},
"keywords": [
"Typescript to json online",
"typescript to JSON schema",
"mock data",
"TypeScript",
"JSON schema from interfaces",
"development with mock data",
"testing with mock data",
"interfaces to mock data",
"types to mock data",
"using Fakerjs for typescript interfaces"
],
"author": "Rafael Alexander Mejia Blanco",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.5.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@faker-js/faker": "^8.0.2"
}
}