-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
67 lines (67 loc) · 1.66 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
{
"name": "factory.ts",
"version": "1.4.2",
"license": "MIT",
"description": "A Typescript test data factory similar to factory_bot and rosie",
"scripts": {
"build": "tsc -p .",
"test": "jest --colors",
"test:debug": "node --inspect=9229 --inspect-brk ./node_modules/.bin/jest --runInBand",
"test:watch": "yarn test:truncate && jest --watch",
"build-and-publish": "yarn build && npm login && npm publish"
},
"jest": {
"reporters": [
"default"
],
"transform": {
"\\.(js|ts)$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "./spec/.*\\.spec\\.ts$",
"moduleFileExtensions": [
"js",
"ts",
"json"
],
"moduleDirectories": [
"src",
"node_modules"
]
},
"repository": "https://github.com/willryan/factory.ts",
"engines": {
"node": ">= 14"
},
"main": "lib/index.js",
"typings": "lib/index",
"files": [
"lib/"
],
"author": "Will Pleasant-Ryan",
"resolutions": {
"@types/istanbul-lib-report": "^3.0.0",
"json5": "2.2.3"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.40.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"jest-environment-node-debug": "^2.0.0",
"json5": "2.2.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "5.0.4"
},
"dependencies": {
"clone-deep": "^4.0.1",
"source-map-support": "^0.5.21"
},
"packageManager": "[email protected]"
}