-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.49 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
109
110
{
"name": "factsory",
"description": "A kind of factory and DI patterns library targeted to Typescript (w/o decorators)",
"version": "4.1.0",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"module": "./dist/mjs/index.js",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/mjs/index.js",
"default": "./dist/cjs/index.js"
},
"./mjs/*": "./dist/mjs/*",
"./cjs/*": "./dist/cjs/*",
"./*": "./dist/cjs/*"
},
"files": [
"LICENSE",
"CHANGELOG.md",
"README.md",
"dist/mjs",
"dist/cjs"
],
"author": {
"name": "Tiago da Costa Peixoto",
"email": "[email protected]"
},
"license": "MIT",
"repository": "github:tiagocpeixoto/factsory",
"bugs": {
"url": "https://github.com/tiagocpeixoto/factsory/issues"
},
"homepage": "https://github.com/tiagocpeixoto/factsory",
"keywords": [
"typescript",
"factory",
"factory-pattern",
"gof",
"gof-pattern",
"gof-factory",
"gof-factory-pattern",
"pattern",
"pattern-library",
"pattern-lib"
],
"packageManager": "[email protected]",
"scripts": {
"lint": "eslint \"src/**\"",
"prettier:write": "yarn prettier --write src/**/*.ts",
"prettier:check": "yarn prettier --check src/**/*.ts",
"test": "yarn compile:default && jest --config=jest.config.ts --detectOpenHandles --silent",
"test:clear": "jest --clearCache",
"validate": "yarn test && yarn lint && yarn prettier:check",
"compile": "yarn compile:default && yarn compile:cjs && yarn compile:mjs",
"compile:default": "tsc",
"compile:cjs": "tsc --project tsconfig.cjs.json",
"compile:mjs": "tsc --project tsconfig.mjs.json",
"build": "yarn build:default && yarn build:cjs && yarn build:mjs",
"build:default": "tsc --build",
"build:cjs": "tsc --build tsconfig.cjs.json",
"build:mjs": "tsc --build tsconfig.mjs.json",
"clean": "yarn clean:default && yarn clean:cjs && yarn clean:mjs",
"clean:default": "tsc --build --clean",
"clean:cjs": "tsc --build tsconfig.cjs.json --clean",
"clean:mjs": "tsc --build tsconfig.mjs.json --clean",
"_postpublish": "git tag -as ${npm_package_version} -m \"Release version ${npm_package_version}\" && git push && git push --tags"
},
"dependencies": {
"async-mutex": "~0.4.0",
"tslib": "~2.6.2"
},
"devDependencies": {
"@faker-js/faker": "^8.2.0",
"@types/chai": "~4.3.9",
"@types/chai-like": "~1.1.2",
"@types/chai-things": "~0.0.37",
"@types/jest": "~29.5.6",
"@types/node": "18.18.6",
"@typescript-eslint/eslint-plugin": "~6.8.0",
"@typescript-eslint/parser": "~6.8.0",
"allure-commandline": "~2.24.1",
"chai": "~4.3.10",
"chai-like": "~1.1.1",
"chai-things": "~0.2.0",
"dotenv-safe": "~8.2.0",
"eslint": "~8.52.0",
"eslint-config-prettier": "~9.0.0",
"eslint-config-standard": "~17.1.0",
"eslint-plugin-etc": "~2.0.3",
"eslint-plugin-import": "~2.28.1",
"eslint-plugin-jest": "~27.4.3",
"eslint-plugin-jest-formatting": "~3.1.0",
"eslint-plugin-n": "~16.2.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~5.0.1",
"eslint-plugin-promise": "~6.1.1",
"jest": "~29.7.0",
"jest-allure": "~0.1.3",
"jest-docblock": "~29.7.0",
"jest-mock-extended": "~3.0.5",
"jest-runner": "~29.7.0",
"jest-runner-groups": "~2.2.0",
"node-notifier": "~10.0.1",
"prettier": "~3.0.3",
"ts-jest": "~29.1.1",
"ts-node": "~10.9.1",
"typescript": "5.2.2"
}
}