-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.38 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.38 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
{
"name": "joist",
"version": "4.7.1",
"description": "",
"type": "module",
"author": "deebloo",
"license": "MIT",
"workspaces": [
"packages/**",
"integration/**",
"website"
],
"scripts": {
"test": "wireit",
"build": "wireit",
"prepare": "husky"
},
"wireit": {
"build": {
"dependencies": [
"./packages/di:build",
"./packages/element:build",
"./packages/observable:build",
"./packages/ssr:build",
"./integration/counter:build",
"./integration/hacker-news:build",
"./integration/templating:build",
"./integration/todo:build"
]
},
"test": {
"dependencies": [
"./packages/di:test",
"./packages/element:test",
"./packages/observable:test",
"./packages/ssr:test",
"./packages/templating:test",
"./integration/hacker-news:test"
]
}
},
"devDependencies": {
"@open-wc/testing": "^4.0.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^24.0.0",
"@web/test-runner": "^0.20.0",
"browser-sync": "^3.0.3",
"chai": "^6.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"mocha": "^11.0.0",
"prettier": "^3.5.3",
"tslib": "2.8.1",
"typescript": "6.0.3",
"wireit": "^0.14.0"
},
"lint-staged": {
"*.{js,css,md,html}": "prettier --write"
}
}