-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
72 lines (72 loc) · 2 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
{
"private": true,
"name": "origin.js",
"version": "1.1.3",
"repository": {
"type": "git",
"url": "git+https://github.com/originjs/origin.js.git"
},
"workspaces": [
"packages/*",
"packages/e2e/*"
],
"scripts": {
"build": "pnpm run build -r --filter ./packages/",
"build:cli": "pnpm run build -C packages/cli",
"build:cli-service": "pnpm run build -C packages/cli-service",
"lint": "eslint ./packages --ext .vue,.js,.ts",
"test": "vitest run --config vitest.config.ts",
"test:e2e": "pnpm run test:e2e -r",
"fix": "pnpm format --write",
"format": "prettier --config .prettierrc --ignore-path .prettierignore \"**/*.{ts,js,json,html}\"",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"release": "wireit",
"postinstall": "patch-package"
},
"wireit": {
"release": {
"command": "release-it --npm.skipChecks --no-git.requireCleanWorkingDir",
"dependencies": [
"./packages/cli:release"
]
}
},
"author": "@originjs",
"license": "MulanPSL-2.0",
"devDependencies": {
"@release-it/conventional-changelog": "^5.0.0",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.3",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"c8": "^7.10.0",
"chalk": "^4.1.1",
"conventional-changelog": "^3.1.25",
"eslint": "^7.31.0",
"eslint-plugin-vue": "^7.14.0",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"lint-staged": "^11.0.1",
"patch-package": "^6.4.7",
"prettier": "^2.3.2",
"release-it": "^15.0.0",
"rimraf": "^4.1.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"vite": "^4.0.4",
"vitest": "^0.21.0",
"wireit": "^0.4.0",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"eslint --fix",
"git add"
]
}
}