forked from micahjon/haunted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.64 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
{
"name": "haunted",
"version": "6.0.0-next.1",
"description": "Hooks for web components",
"main": "lib/haunted.js",
"module": "lib/haunted.js",
"type": "module",
"customElements": "custom-elements.json",
"scripts": {
"build": "tsc",
"changeset": "changeset",
"analyze": "tsc; cem analyze",
"preversion": "tsc",
"test": "web-test-runner \"test/**/*.test.ts\" --node-resolve",
"test:watch": "web-test-runner test/**/*.test.ts --node-resolve --watch",
"start": "rocket start",
"docs": "rocket build"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/matthewp/haunted.git"
},
"keywords": [
"haunted",
"lit",
"web-components"
],
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/matthewp/haunted/issues"
},
"homepage": "https://github.com/matthewp/haunted#readme",
"typings": "lib/haunted.d.ts",
"devDependencies": {
"@changesets/cli": "^2.16.0",
"@custom-elements-manifest/analyzer": "^0.5.7",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@matthewp/compile": "^3.0.0",
"@open-wc/testing": "^3.1.2",
"@rocket/cli": "^0.9.8",
"@rocket/launch": "^0.5.4",
"@rocket/search": "^0.4.1",
"@types/mocha": "^9.1.1",
"@web/dev-server-esbuild": "^0.3.0",
"@web/test-runner": "^0.13.18",
"cem-plugin-jsdoc-function": "^0.0.5",
"eleventy-plugin-helmet": "^0.2.2",
"rocket-preset-code-tabs": "^0.2.4",
"rocket-preset-custom-elements-manifest": "^0.1.7",
"rocket-preset-playground-elements": "^0.1.4",
"typescript": "^4.3.5"
},
"dependencies": {
"lit": "^2.0.0"
}
}