-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
54 lines (54 loc) · 1.27 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
{
"name": "ng-faker",
"version": "1.3.1",
"description": "generate massive amounts of fake nigerian data",
"repository": "[email protected]:BolajiOlajide/ng-faker.git",
"main": "dist/index.js",
"type": "module",
"maintainers": [
"Oyindamola Subair",
"Rotimi Babalola",
"Bolaji Olajide"
],
"license": "MIT",
"scripts": {
"prepublishOnly": "pnpm run ci",
"ci": "pnpm run build && pnpm run check-format && pnpm run check-exports && pnpm run lint && pnpm run test",
"check-exports": "attw --pack .",
"format": "prettier --write .",
"check-format": "prettier --check .",
"build": "tsup",
"test": "vitest",
"lint": "tsc",
"local-release": "changeset version && changeset publish"
},
"dependencies": {
"zod": "^3.23.8"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@changesets/cli": "^2.27.7",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"tsup": "^8.2.4",
"typescript": "^5.5.3",
"vitest": "^2.0.2"
},
"keywords": [
"faker",
"nigeria",
"fake",
"naija",
"ng",
"data",
"fakerjs"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
}
}