-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3 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
{
"name": "@maarkis/fluent-faker",
"version": "0.2.0",
"description": "",
"author": "Jean Markis",
"keywords": [
"faker",
"fluent",
"fluent faker data generator",
"fluent-faker",
"faker.js",
"faker js",
"faker-js",
"fake data",
"fake-data",
"fake-generator",
"faker data generator",
"fluent faker data generator"
],
"engines": {
"node": ">=14",
"pnpm": ">=7.14"
},
"repository": {
"type": "git",
"url": "https://github.com/Maarkis/fluent-faker.git"
},
"bugs": {
"url": "https://github.com/Maarkis/fluent-faker/issues"
},
"scripts": {
"prepare": "husky install",
"build": "pnpm run clean:build && pnpm run build:node && pnpm run build:types",
"build:node": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && bash ./fixup",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist/types",
"check": "prettier --check \"src/**/*.ts\" && eslint --ext .js,.ts .",
"prettier": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint --ext .js,.ts . --fix",
"clean": "rimraf dist coverage node_modules",
"clean:build": "rimraf dist/*"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/"
],
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
},
"./builder/*": {
"types": "./dist/types/builder.d.ts",
"import": "./dist/mjs/builder.js",
"require": "./dist/cjs/builder.js"
}
},
"typesVersions": {
">=0.0.1": {
"*": [
"dist/types/*"
]
}
},
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.11",
"@types/lodash.clonedeep": "^4.5.9",
"@types/lodash.isfunction": "^3.0.9",
"@types/lodash.reduce": "^4.6.9",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "3.1.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"typescript-eslint": "0.0.1-alpha.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.2",
"semantic-release": "^22.0.12"
},
"dependencies": {
"@faker-js/faker": "^8.3.1",
"lodash.clonedeep": "^4.5.0",
"lodash.isfunction": "^3.0.9",
"lodash.reduce": "^4.6.0"
}
}