forked from thiagomini/factory-girl-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.1 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": "factory-girl-ts",
"version": "1.0.9",
"description": "A factory library to help creating test data",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"test": "test"
},
"engines": {
"node": ">= 18.16.0"
},
"files": [
"lib/**/*"
],
"scripts": {
"test": "vitest run --config ./vitest.config.ts",
"test:watch": "vitest --config ./vitest.config.ts",
"test:e2e": "vitest run --config ./vitest.e2e.config.ts",
"test:e2e:watch": "vitest --config ./vitest.e2e.config.ts",
"prebuild": "rimraf lib",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write .",
"prepublishOnly": "npm test && npm run lint",
"preversion": "dc up -d && npm run test:e2e",
"version": "npm run prettier && git add -A src",
"postversion": "git push && git push --tags",
"prepare": "husky install && npm run build",
"typecheck": "tsc --noEmit -p tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thiagomini/factory-girl-ts.git"
},
"keywords": [
"test",
"factory"
],
"author": "Thiago Ribeiro Valentim Martins",
"license": "ISC",
"bugs": {
"url": "https://github.com/thiagomini/factory-girl-ts/issues"
},
"homepage": "https://github.com/thiagomini/factory-girl-ts#readme",
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/lodash": "^4.14.194",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"lodash": "^4.17.21",
"pg": "^8.10.0",
"pg-hstore": "^2.3.4",
"prettier": "^2.8.7",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.31.0",
"type-fest": "^3.8.0",
"typeorm": "^0.3.15",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
},
"dependencies": {
"class-transformer": "^0.5.1"
}
}