-
-
Notifications
You must be signed in to change notification settings - Fork 940
/
Copy pathpackage.json
152 lines (152 loc) · 4.48 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "@faker-js/faker",
"version": "9.4.0",
"description": "Generate massive amounts of fake contextual data",
"scripts": {
"clean": "rimraf coverage .eslintcache dist docs/.vitepress/cache docs/.vitepress/dist node_modules",
"build:clean": "rimraf dist",
"build:code": "tsup-node",
"build": "run-s build:clean build:code",
"generate": "run-s generate:locales generate:api-docs",
"generate:api-docs": "tsx ./scripts/apidocs.ts",
"generate:locales": "tsx ./scripts/generate-locales.ts",
"docs:build": "run-s generate:api-docs docs:build:embedded docs:build:run",
"docs:build:embedded": "tsup-node --entry.faker src/index.ts --format esm --outDir docs/public --no-dts --no-clean",
"docs:build:run": "vitepress build docs",
"docs:build:ci": "run-s build docs:build",
"docs:dev": "run-s generate:api-docs docs:build:embedded docs:dev:run",
"docs:dev:run": "vitepress dev docs",
"docs:serve": "vitepress serve docs --port 5173",
"docs:diff": "tsx ./scripts/diff.ts",
"format": "prettier --cache --write .",
"lint": "eslint --cache --cache-strategy content .",
"ts-check": "tsc",
"test": "vitest",
"test:update-snapshots": "vitest run -u",
"coverage": "vitest run --coverage",
"integration-test": "vitest -c vitest.it-config.ts",
"cypress": "cypress",
"docs:test:e2e:ci": "run-s docs:build:ci docs:test:e2e:run",
"docs:test:e2e:run": "run-p --race docs:serve \"cypress run\"",
"docs:test:e2e:open": "run-p --race docs:serve \"cypress open\"",
"release": "commit-and-tag-version --commit-all",
"prepublishOnly": "pnpm run clean && pnpm install && pnpm run build",
"preflight": "pnpm install && run-s generate format lint build test:update-snapshots ts-check"
},
"keywords": [
"faker",
"faker.js",
"fakerjs",
"faker-js",
"fake data generator",
"fake data",
"fake-data",
"fake-generator",
"fake-data-generator",
"fake content generator",
"fake contextual data generator",
"fake contextual data"
],
"homepage": "https://fakerjs.dev",
"bugs": {
"url": "https://github.com/faker-js/faker/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/faker-js/faker.git"
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/fakerjs"
}
],
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./locale/*": {
"require": {
"types": "./dist/locale/*.d.cts",
"default": "./dist/locale/*.cjs"
},
"default": {
"types": "./dist/locale/*.d.ts",
"default": "./dist/locale/*.js"
}
},
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
">=5.0": {
".": [
"./dist/index.d.ts"
],
"locale/*": [
"./dist/locale/*.d.ts"
]
}
},
"files": [
"CHANGELOG.md",
"dist"
],
"devDependencies": {
"@eslint/compat": "1.2.5",
"@eslint/js": "9.18.0",
"@stylistic/eslint-plugin": "2.12.1",
"@types/eslint__js": "8.42.3",
"@types/node": "22.10.3",
"@types/sanitize-html": "2.13.0",
"@types/semver": "7.5.8",
"@types/validator": "13.12.2",
"@vitest/coverage-v8": "2.1.8",
"@vitest/eslint-plugin": "1.1.20",
"@vitest/ui": "2.1.8",
"@vueuse/core": "12.2.0",
"commit-and-tag-version": "12.5.0",
"cypress": "13.17.0",
"eslint": "9.18.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-file-progress": "3.0.1",
"eslint-plugin-jsdoc": "50.6.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unicorn": "56.0.1",
"jiti": "2.4.2",
"npm-run-all2": "7.0.2",
"prettier": "3.4.2",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-packagejson": "2.5.6",
"rimraf": "5.0.10",
"sanitize-html": "2.14.0",
"semver": "7.6.3",
"ts-morph": "25.0.0",
"tsup": "8.3.5",
"tsx": "4.19.2",
"typescript": "5.7.2",
"typescript-eslint": "8.19.1",
"validator": "13.12.0",
"vitepress": "1.5.0",
"vitest": "2.1.8",
"vue": "3.5.13",
"vue-tsc": "2.2.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}