-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.54 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.54 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@vuesion/packages",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/vuesion/packages.git"
},
"author": "Johannes Werner <johannes.werner86@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/vuesion/packages",
"bugs": {
"url": "https://github.com/vuesion/packages/issues"
},
"scripts": {
"postinstall": "lerna bootstrap && husky install",
"predev": "lerna bootstrap && npm run build",
"dev": "lerna run dev --parallel",
"build": "lerna run build",
"clean": "lerna run clean && lerna clean && rimraf ./coverage",
"test": "jest --coverage",
"pree2e": "lerna bootstrap && npm run build",
"e2e": "lerna run e2e",
"lint": "eslint . --ext ts,vue --fix --cache",
"release": "ts-node ./scripts/release.ts",
"prettier": "prettier --config .prettierrc --ignore-path .prettierignore ./packages/**/*.{ts,js}",
"pre-commit": "pretty-quick --staged && npm run lint && npm run test"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.11.0",
"generate-changelog": "^1.8.0",
"glob": "^10.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lerna": "^6.6.1",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"jest": {
"globals": {
"window": true
},
"rootDir": ".",
"roots": [
"<rootDir>/packages"
],
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/tmp/",
"/template/",
"/dist/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/tmp/",
"/template/"
],
"coverageDirectory": "./coverage",
"coverageReporters": [
"html",
"text",
"lcov",
"json"
],
"preset": "ts-jest",
"testMatch": null,
"testEnvironment": "jsdom"
}
}