-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.42 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.42 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": "ytils",
"private": "true",
"description": "A collection of handy utilities for js/ts programing",
"engines": {
"node": ">=16.11.0",
"npm": "please-use-pnpm",
"cnpm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">=7.12.2"
},
"workspaces": [
"packages/*"
],
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/Abyssers/ytils.git"
},
"keywords": [
"typescript",
"utils"
],
"author": "Morilence",
"contributors": [
"Morilence",
"tnmwl"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Abyssers/ytils/issues"
},
"homepage": "https://github.com/Abyssers/ytils#readme",
"scripts": {
"prepare": "husky install",
"postinstall": "pnpm run build",
"lock": "node scripts/lock",
"setup": "node scripts/setup",
"dev": "rollup -c -w",
"build": "rollup -c",
"clean": "node scripts/clean",
"lint": "eslint --fix --ext .js,.ts && prettier --write .",
"test": "jest"
},
"devDependencies": {
"@changesets/cli": "2.25.0",
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-strip": "2.1.0",
"@types/benchmark": "2.1.2",
"@types/jest": "29.0.3",
"@types/node": "18.7.14",
"@typescript-eslint/eslint-plugin": "5.35.1",
"@typescript-eslint/parser": "5.35.1",
"@ytils/calc": "workspace:*",
"@ytils/cmpr": "workspace:*",
"@ytils/mdfy": "workspace:*",
"@ytils/recre8": "workspace:*",
"@ytils/ref": "workspace:*",
"@ytils/typ": "workspace:*",
"benchmark": "2.1.4",
"colors": "1.4.0",
"eslint": "8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"jest": "29.0.3",
"jest-environment-jsdom": "29.1.2",
"lint-staged": "13.0.3",
"markdownlint": "0.26.2",
"markdownlint-cli2": "0.5.1",
"prettier": "2.7.1",
"rollup": "2.79.0",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.34.1",
"ts-jest": "29.0.2",
"ts-node": "10.9.1",
"tslib": "2.4.0",
"typescript": "4.8.2"
}
}