-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 2.03 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
{
"name": "tybalt",
"version": "0.1.11",
"description": "A toolkit for writing web components",
"private": true,
"scripts": {
"build": "turbo build",
"ci-test": "turbo ci-test",
"clean": "turbo clean",
"combine-coverage": "istanbul-merge --out coverage-final.json 'packages/**/coverage/coverage-final.json'",
"e2e": "cypress run --browser=chrome",
"format": "prettier --write .",
"generate-scaffold": "cd ./packages/cli/out && yarn run exec-source scaffold eleventy --name my-example && cd ../../..",
"generate-types": "turbo generate-types",
"lint": "eslint packages/**!(node_modules)/src/**/*.ts packages/cypress/e2e/**/*.js packages/cypress/support/*.js",
"serve": "turbo run serve --parallel",
"test": "turbo test",
"watch": "turbo run watch --parallel"
},
"keywords": [],
"author": "Douglas Wade <[email protected]>",
"license": "MIT",
"workspaces": [
"./packages/cli",
"./packages/context",
"./packages/core",
"./packages/cypress",
"./packages/eleventy-plugin",
"./packages/eleventy-plugin-vanilla-example",
"./packages/esbuild-plugin",
"./packages/eslint-plugin",
"./packages/example",
"./packages/parser",
"./packages/reactive",
"./packages/test-utils",
"./packages/test-utils-lit-example",
"./packages/validator",
"./packages/website"
],
"devDependencies": {
"@tybalt/eslint-plugin": "workspace:^",
"cypress": "^12.17.3",
"eslint": "^8.57.0",
"istanbul-merge": "^2.0.0",
"jest": "^29.7.0",
"jest-fail-on-console": "^3.3.0",
"prettier": "^3.2.5",
"turbo": "^1.13.3"
},
"packageManager": "[email protected]",
"bugs": {
"url": "https://github.com/doug-wade/tybalt/issues"
},
"homepage": "https://tybalt.org",
"repository": {
"type": "git",
"url": "https://github.com/doug-wade/tybalt.git"
}
}