-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.06 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
{
"name": "factoryse",
"description": "TypeScript-based test factory library that simplifies the creation of test data for your Node.js applications.",
"keywords": [
"testing",
"factory",
"typescript",
"dummy",
"faker",
"nodejs"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md"
],
"engines": {
"node": ">=16.20.2"
},
"author": {
"name": "Steve McKeogh",
"email": "[email protected]",
"url": "https://mckeogh.uk"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thekeogh/factoryse.git"
},
"bugs": {
"url": "https://github.com/thekeogh/factoryse/issues"
},
"homepage": "https://github.com/thekeogh/factoryse#readme",
"scripts": {
"build": "rimraf ./dist && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "npm run eslint && npm run prettier",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"eslint": "eslint --ext=ts src tests --no-error-on-unmatched-pattern --quiet || true",
"eslint:fix": "eslint --ext=ts src tests --no-error-on-unmatched-pattern --quiet --fix || true"
},
"dependencies": {
"@faker-js/faker": "^8.3.1",
"deepmerge": "^4.3.1",
"lodash.filter": "^4.6.0",
"lodash.foreach": "^4.5.0",
"lodash.ismatch": "^4.4.0",
"lodash.remove": "^4.7.0"
},
"devDependencies": {
"@types/lodash.filter": "^4.6.9",
"@types/lodash.foreach": "^4.5.9",
"@types/lodash.ismatch": "^4.4.9",
"@types/lodash.remove": "^4.7.9",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"tsc-alias": "^1.8.8",
"type-fest": "^4.9.0",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "^4.2.3",
"vitest": "^1.1.1"
}
}