-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) 路 1.65 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) 路 1.65 KB
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
{
"name": "mayonnaise.js",
"version": "1.2.0",
"license": "MIT",
"type": "commonjs",
"description": "Fake data generator for JavaScript, courtesy of Patrick Star",
"author": "Nathan Chapman <nathanchapman@duck.com> (https://nathanchapman.dev)",
"main": "dist/mayonnaise.cjs",
"types": "dist/mayonnaise.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/mayonnaise.d.mts",
"default": "./dist/mayonnaise.mjs"
},
"require": {
"types": "./dist/mayonnaise.d.cts",
"default": "./dist/mayonnaise.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": "github:nathanchapman/mayonnaise.js",
"bugs": "https://github.com/nathanchapman/mayonnaise.js/issues",
"homepage": "https://github.com/nathanchapman/mayonnaise.js#readme",
"runkitExampleFilename": "dist/example.js",
"packageManager": "bun@1.3.13",
"scripts": {
"build": "bun ./node_modules/typescript/bin/tsc -p tsconfig.json",
"prepack": "bun run build",
"prepublishOnly": "bun run build",
"test": "bun test",
"typecheck": "bun ./node_modules/typescript/bin/tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"casual": "^1.6.2"
},
"devDependencies": {
"@types/node": "^25.6.2",
"bun-types": "^1.3.13",
"typescript": "^6.0.3"
},
"keywords": [
"mayonnaise",
"placeholder",
"text",
"Patrick",
"Star",
"spongebob",
"lorem",
"ipsum",
"faker",
"fake",
"data",
"casual",
"fixtures",
"testing",
"seed",
"random",
"mock",
"mocking",
"generator"
]
}