-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
37 lines (37 loc) · 1.12 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
{
"name": "@quasar/testing",
"version": "1.0.0-beta.7",
"description": "Monorepo for test harness integration in Quasar Framework 1.0 projects.",
"repository": "https://github.com/quasarframework/quasar-testing",
"author": "Daniel Thompson-Yvetot",
"license": "MIT",
"private": true,
"homepage": "http://quasar-framework.org",
"devDependencies": {
"@types/node": "^20.14.6",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.1.0",
"lerna": "^4.0.0",
"prettier": "^3.3.3",
"typescript": "^5.4.5"
},
"engines": {
"node": ">= 12.22.1",
"npm": ">= 6.14.12",
"yarn": ">= 1.17.3"
},
"bugs": {
"url": "https://github.com/quasarframework/quasar-testing/issues"
},
"scripts": {
"lint": "eslint --ext .js,.ts \"packages/*/src/*\" --fix --report-unused-disable-directives",
"format": "prettier --write \"packages/*/src/**/*.{js,ts}\"",
"build": "yarn && lerna clean && lerna link && lerna bootstrap",
"publish": "lerna publish"
},
"workspaces": [
"packages/*"
]
}