-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
143 lines (143 loc) · 3.68 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "lit-analyzer",
"version": "1.0.0",
"description": "Monorepo for tools that analyze lit-html templates",
"private": true,
"author": "runem",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/runem/lit-analyzer.git"
},
"bugs": {
"url": "https://github.com/runem/lit-analyzer/issues"
},
"homepage": "https://github.com/runem/lit-analyzer#readme",
"keywords": [
"lit-html",
"lit",
"lit-element",
"javascript",
"typescript",
"web components",
"web",
"components",
"tagged",
"template"
],
"scripts": {
"postinstall": "npm run bootstrap",
"prettier:write": "prettier --write \"packages/*/src/**/*.ts\"",
"postpublish": "echo \"🎉 Published successfully! You can now publish the vscode extension seperately by running 'cd packages/vscode-lit-plugin && npm run publish'\"",
"publish": "lerna run prepare && lerna publish --exact && npm run postpublish",
"publish:next": "lerna run prepare && echo \"When asked, please choose 'Custom Prerelease' and use default value\" && lerna publish --dist-tag next --preid next --exact && npm run postpublish",
"bootstrap": "lerna clean --yes && lerna bootstrap",
"test:watch": "lerna run test:watch --parallel --stream",
"readme": "lerna run readme && readme generate -i readme.blueprint.md -c readme.config.json",
"dev": "cd dev && TSS_DEBUG=5999 code . --disable-extension runem.lit-plugin",
"dev:logs": "touch dev/lit-plugin.log && tail -f dev/lit-plugin.log",
"lint": "wireit",
"eslint": "wireit",
"build": "wireit",
"test": "wireit",
"test:headless": "wireit",
"test:headful": "wireit",
"prettier:check": "wireit",
"package": "wireit"
},
"wireit": {
"build": {
"dependencies": [
"./packages/lit-analyzer:build",
"./packages/ts-lit-plugin:build",
"./packages/vscode-lit-plugin:build"
]
},
"test": {
"dependencies": [
"test:headless",
"test:headful",
"lint"
]
},
"lint": {
"dependencies": [
"eslint",
"prettier:check"
]
},
"test:headless": {
"dependencies": [
"./packages/lit-analyzer:test"
]
},
"test:headful": {
"dependencies": [
"./packages/vscode-lit-plugin:test"
]
},
"eslint": {
"command": "eslint ."
},
"prettier:check": {
"files": [
"packages/*/src/**/*.ts",
"prettier.config.js"
],
"command": "prettier --check \"packages/*/src/**/*.ts\""
},
"package": {
"dependencies": [
"./packages/vscode-lit-plugin:package"
]
}
},
"devDependencies": {
"@appnest/readme": "^1.2.7",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"fs-extra": "^9.0.1",
"husky": "^4.2.5",
"lerna": "^4.0.0",
"lint-staged": "^10.2.10",
"nodemon": "^2.0.4",
"prettier": "^2.4.1",
"typescript": "~4.8.4",
"wireit": "^0.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": "eslint --fix",
"*.{ts,js,md,json}": "prettier --write"
},
"contributors": [
{
"name": "Rune Mehlsen",
"url": "https://twitter.com/runemehlsen",
"img": "https://avatars2.githubusercontent.com/u/5372940?s=460&v=4"
},
{
"name": "Andreas Mehlsen",
"url": "https://twitter.com/andreasmehlsen",
"img": "https://avatars1.githubusercontent.com/u/6267397?s=460&v=4"
},
{
"name": "Peter Burns",
"url": "https://twitter.com/rictic",
"img": "https://avatars3.githubusercontent.com/u/1659?s=460&v=4"
},
{
"name": "You?",
"img": "https://joeschmoe.io/api/v1/random",
"url": "https://github.com/runem/lit-analyzer/blob/master/CONTRIBUTING.md"
}
]
}