-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 2.8 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@lit-labs/testing",
"version": "0.2.5",
"publishConfig": {
"access": "public"
},
"description": "Testing utilites for Lit",
"license": "BSD-3-Clause",
"author": "Google LLC",
"homepage": "https://github.com/lit/lit/tree/main/packages/labs/testing",
"repository": {
"type": "git",
"url": "https://github.com/lit/lit.git",
"directory": "packages/labs/testing"
},
"main": "index.js",
"type": "module",
"scripts": {
"build": "wireit",
"build:ts": "wireit",
"build:ts:utils": "wireit",
"test": "wireit"
},
"wireit": {
"build": {
"dependencies": [
"build:ts",
"../../lit:build",
"../ssr-client:build"
]
},
"build:ts": {
"command": "tsc --build --pretty",
"clean": "if-file-deleted",
"dependencies": [
"build:ts:utils",
"../../lit:build:ts:types",
"../ssr:build:ts",
"../ssr-client:build:ts:types"
],
"files": [
"src/**/*.ts",
"!src/index.ts",
"!src/lib/utils.ts",
"tsconfig.json"
],
"output": [
"fixtures.{d.ts,d.ts.map,js,js.map}",
"web-test-runner-ssr-plugin.{d.ts,d.ts.map,js,js.map}",
"lib/",
"!lib/utils.{d.ts,d.ts.map,js,js.map}",
"test/",
".tsbuildinfo"
]
},
"build:ts:utils": {
"command": "tsc --project tsconfig-utils.json --pretty",
"clean": "if-file-deleted",
"dependencies": [],
"files": [
"src/index.ts",
"src/lib/utils.ts",
"tsconfig.json",
"tsconfig-utils.json"
],
"output": [
"index.{d.ts,d.ts.map,js,js.map}",
"lib/utils.{d.ts,d.ts.map,js,js.map}",
".tsbuildinfo-utils"
]
},
"test": {
"command": "wtr",
"dependencies": [
"build"
],
"env": {
"BROWSERS": {
"external": true
}
},
"files": [
"web-test-runner.config.js"
],
"output": []
}
},
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./fixtures.js": {
"types": "./fixtures.d.ts",
"default": "./fixtures.js"
},
"./web-test-runner-ssr-plugin.js": {
"types": "./web-test-runner-ssr-plugin.d.ts",
"default": "./web-test-runner-ssr-plugin.js"
}
},
"files": [
"index.{d.ts,d.ts.map,js,js.map}",
"fixtures.{d.ts,d.ts.map,js,js.map}",
"web-test-runner-ssr-plugin.{d.ts,d.ts.map,js,js.map}",
"lib/**/*.{d.ts,d.ts.map,js,js.map}"
],
"dependencies": {
"@lit-labs/ssr": "^3.1.8",
"@lit-labs/ssr-client": "^1.1.4",
"@web/test-runner-commands": "^0.6.1",
"@webcomponents/template-shadowroot": "^0.1.0",
"lit": "^2.0.0 || ^3.0.0"
},
"devDependencies": {
"@open-wc/testing": "^3.1.5"
}
}