-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.42 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
{
"name": "eljs",
"version": "0.31.0",
"private": true,
"description": "node utility monorepo",
"repository": {
"type": "git",
"url": "https://github.com/chnliquan/eljs"
},
"license": "MIT",
"author": "liquan",
"scripts": {
"add-owner": "tsx scripts/add-owner",
"boot": "tsx scripts/bootstrap",
"build": "turbo run build",
"clean": "turbo run clean",
"coverage": "codecov",
"dev": "turbo run dev",
"format": "prettier --write 'packages/**/*.{ts,tsx}'",
"preinstall": "npx only-allow pnpm",
"lint": "eslint 'packages/**/*.{ts,tsx}'",
"prepare": "husky install",
"prerelease:alpha": "tsx scripts/release prerelease --tag=alpha",
"prerelease:beta": "tsx scripts/release prerelease --tag=beta",
"prerelease:next": "tsx scripts/release prerelease --tag=next",
"release": "tsx scripts/release",
"release:dry": "tsx scripts/release --dry",
"release:major": "tsx scripts/release major",
"release:minor": "tsx scripts/release minor",
"release:only": "tsx scripts/release --skipTests --skipBuild",
"release:patch": "tsx scripts/release patch",
"test": "npm run test:once -- --watch",
"test:once": "jest --runInBand --colors --forceExit"
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eljs/create": "workspace:*",
"@eljs/release": "workspace:*",
"@eljs/utils": "workspace:*",
"@types/jest": "^29.5.13",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"codecov": "^3.8.3",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-dirs": "^0.0.4",
"eslint-plugin-prettier": "^4.2.1",
"father": "^4.5.0",
"husky": "^8.0.1",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"only-allow": "^1.1.1",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.0.3",
"prettier-plugin-packagejson": "^2.2.18",
"rimraf": "^3.0.2",
"strip-ansi": "^6.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"tsx": "^3.8.2",
"turbo": "^1.4.3",
"typescript": "^5.6.3",
"zx": "^4.3.0"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}