-
-
Notifications
You must be signed in to change notification settings - Fork 919
/
package.json
128 lines (128 loc) · 3.63 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
{
"name": "@faker-js/faker",
"version": "6.0.0-alpha.6",
"description": "Generate massive amounts of fake contextual data",
"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"
],
"repository": {
"type": "git",
"url": "https://github.com/faker-js/faker.git"
},
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "index.d.ts",
"typesVersions": {
">=4.0": {
"*": [
"dist/types/*"
]
}
},
"exports": {
".": {
"node": "./dist/cjs/index.js",
"es2015": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
},
"./locale/*": {
"node": "./dist/cjs/locale/*.js",
"es2015": "./dist/esm/locale/*.js",
"default": "./dist/esm/locale/*.js"
},
"./package.json": "./package.json"
},
"files": [
"CHANGELOG.md",
"CHANGELOG_old.md",
"dist",
"tsconfig.json"
],
"scripts": {
"clean": "rimraf coverage .eslintcache dist docs/.vitepress/dist pnpm-lock.yaml node_modules",
"build:clean": "rimraf dist",
"build:code": "esno ./scripts/bundle.ts",
"build:types": "tsc --emitDeclarationOnly --outDir dist/types",
"build": "run-s build:clean build:code build:types",
"generate:api-docs": "esno ./scripts/apidoc.ts",
"generate:locales": "esno ./scripts/generateLocales.ts",
"docs:build": "run-s docs:prepare docs:build:run",
"docs:build:run": "vitepress build docs",
"docs:build:ci": "run-s build docs:build",
"docs:prepare": "run-s generate:api-docs",
"docs:dev": "run-s docs:prepare docs:dev:run",
"docs:dev:run": "vitepress dev docs",
"docs:serve": "vitepress serve docs",
"format": "prettier --write .",
"lint": "eslint --cache --cache-strategy content .",
"test": "vitest",
"coverage": "vitest run --coverage",
"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": "standard-version"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged --concurrent false",
"commit-msg": "npx esno scripts/verifyCommit.ts $1"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
],
"**/*.ts": [
"eslint --ext .ts"
]
},
"devDependencies": {
"@types/node": "~16.11.22",
"@types/prettier": "~2.4.4",
"@types/validator": "~13.7.1",
"@typescript-eslint/eslint-plugin": "~5.12.0",
"@typescript-eslint/parser": "~5.12.0",
"@vitest/ui": "~0.4.1",
"c8": "~7.11.0",
"conventional-changelog-cli": "~2.2.2",
"cypress": "~9.5.0",
"esbuild": "~0.14.23",
"eslint": "~8.9.0",
"eslint-config-prettier": "~8.3.0",
"eslint-define-config": "~1.2.5",
"eslint-gitignore": "~0.1.0",
"eslint-plugin-jsdoc": "~37.9.4",
"eslint-plugin-prettier": "~4.0.0",
"esno": "~0.14.1",
"lint-staged": "~12.3.4",
"npm-run-all": "~4.1.5",
"picocolors": "~1.0.0",
"prettier": "2.5.1",
"rimraf": "~3.0.2",
"simple-git-hooks": "~2.7.0",
"standard-version": "~9.3.2",
"typedoc": "~0.22.11",
"typedoc-plugin-missing-exports": "~0.22.6",
"typescript": "~4.5.5",
"validator": "~13.7.0",
"vite": "~2.8.4",
"vitepress": "~0.22.2",
"vitest": "~0.4.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
}
}