-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
63 lines (63 loc) · 1.72 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
{
"name": "minifaker",
"version": "1.34.1",
"description": "lightweight faker.js",
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./locales/en": {
"import": "./dist/esm/locales/en/index.js",
"require": "./dist/cjs/locales/en/index.js"
},
"./locales/fr": {
"import": "./dist/esm/locales/fr/index.js",
"require": "./dist/cjs/locales/fr/index.js"
},
"./locales/fr-CA": {
"import": "./dist/esm/locales/fr-CA/index.js",
"require": "./dist/cjs/locales/fr-CA/index.js"
},
"./locales/es": {
"import": "./dist/esm/locales/es/index.js",
"require": "./dist/cjs/locales/es/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "ts-node bundle.ts && tsc ./src/index.ts --declaration --emitDeclarationOnly --downlevelIteration --esModuleInterop --outdir ./dist/types",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/g45t345rt/minifaker"
},
"homepage": "https://github.com/g45t345rt/minifaker#readme",
"author": "g45t345rt",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.9",
"@types/seedrandom": "^3.0.1",
"crypto-browserify": "^3.12.0",
"esbuild": "^0.14.11",
"jest": "^27.4.7",
"jest-extended": "^1.2.0",
"minifaker": "file:.yalc/minifaker",
"seedrandom": "^3.0.5",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0"
},
"dependencies": {
"@types/uuid": "^8.3.4",
"nanoid": "^3.2.0",
"uuid": "^8.3.2"
}
}