-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.06 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.06 KB
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
{
"name": "@toreda/types",
"version": "3.0.0",
"public": true,
"description": "Common mappings, aliases, and types used in Toreda TypeScript packages.",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"lint": "yarn lint:nofix",
"lint:nofix": "yarn lint",
"lint:fix": "yarn eslint src/**/*.{js,ts,tsx} --quiet --fix",
"build": "yarn gulp",
"make:docs": "yarn typedoc",
"make:depgraph": "yarn madge src/index.ts --image dependency-graph.png",
"test": "yarn jest --coverage --maxWorkers=50%"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toreda/types.git"
},
"keywords": [
"JavaScript",
"lib",
"node",
"Toreda",
"types",
"TypeScript"
],
"author": "Toreda, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/toreda/types/issues"
},
"homepage": "https://github.com/toreda/types#readme",
"sideEffects": false,
"resolutions": {
"set-value": "^4.1.0",
"glob-parent": "^6.0.2",
"minimist": "^1.2.6",
"marked": "^4.0.10",
"chokidar": "^3.0.0"
},
"devDependencies": {
"@cspotcode/source-map-support": "^0.8.1",
"@swc/core": "^1.4.11",
"@swc/helpers": "^0.4.11",
"@swc/jest": "^0.2.36",
"@toreda/eslint-config": "^2.2.0",
"@toreda/prettier-config": "^1.0.1",
"@types/eslint": "^8.56.6",
"@types/gulp": "^4.0.9",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-dtslint": "^3.0.1",
"eslint-plugin-prettier": "^5.1.3",
"expect-type": "^0.14.2",
"gulp": "^4.0.2",
"gulp-swc": "^1.2.3",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^29.1.1",
"jest-cli": "^29.1.1",
"jest-sonar-reporter": "^2.0.0",
"prettier": "^2.7.1",
"swc-node": "^1.0.0",
"through2": "^4.0.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.12",
"typescript": "^5.4.3"
},
"resolutions": {
"glob-parent": "^5.1.2"
},
"prettier": "@toreda/prettier-config",
"dependencies": {
"del": "^6.1.1",
"marked": "^4.0.10"
}
}