-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
42 lines (42 loc) · 1.49 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
{
"name": "@github/custom-element-element",
"version": "0.0.1",
"description": "Boilerplate for creating a custom element.",
"main": "dist/custom-element.js",
"module": "dist/custom-element.js",
"type": "module",
"types": "dist/custom-elements.d.ts",
"license": "MIT",
"repository": "github/custom-element-boilerplate",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint . --ext .ts,.js",
"prebuild": "npm run clean && npm run lint && mkdir dist",
"build": "tsc",
"pretest": "npm run build",
"test": "web-test-runner \"test/**/*\" --node-resolve",
"start": "web-dev-server --node-resolve --open --watch --app-index=examples/index.html --root-dir=. --esbuild-target auto",
"prepublishOnly": "npm run build",
"postpublish": "npm publish --ignore-scripts --@github:registry='https://npm.pkg.github.com'"
},
"prettier": "@github/prettier-config",
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.6.6",
"@github/browserslist-config": "^1.0.0",
"@github/cem-plugin-readme": "^0.0.1",
"@github/prettier-config": "^0.0.5",
"@open-wc/testing": "^3.1.7",
"@web/dev-server": "^0.1.35",
"@web/dev-server-esbuild": "^0.3.3",
"@web/test-runner": "^0.15.0",
"cem-plugin-vs-code-custom-data-generator": "^1.3.0",
"eslint": "^8.28.0",
"eslint-plugin-custom-elements": "^0.0.6",
"eslint-plugin-github": "^4.4.1",
"typescript": "^4.9.3"
},
"customElements": "custom-elements.json"
}