-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@robrez/scoped-registry-polymer",
"version": "0.1.0",
"description": "Scoped custom element registry for polymer",
"type": "module",
"types": "index.d.ts",
"module": "index.js",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"exports": {
".": "./index.js",
"./index.js": "./index.js",
"./package.json": "./package.json"
},
"files": [
"**/*.d.ts",
"**/*.d.ts.map",
"**/*.js",
"**/*.js.map",
"package.json",
"!demo/",
"!test/"
],
"keywords": [
"web components",
"polymer"
],
"scripts": {
"build": "tsc --build ./tsconfig.json",
"clean": "tsc --build ./tsconfig.json --clean",
"test": "echo \"Error: TODO no test specified\" && exit 1",
"start": "web-dev-server --node-resolve --open --watch --root-dir demo"
},
"author": "robrez",
"homepage": "https://github.com/robrez/scoped-registry-polymer",
"repository": {
"type": "git",
"url": "https://github.com/robrez/scoped-registry-polymer.git"
},
"license": "MIT",
"dependencies": {
"@open-wc/dedupe-mixin": "^1.0.0",
"@polymer/polymer": "^3.0.0",
"@webcomponents/scoped-custom-element-registry": "^0.0.8",
"lit": "^2.0.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@polymer/decorators": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@web/dev-server": "^0.1.35",
"eslint": "^8.33.0",
"rimraf": "^4.1.2",
"typescript": "^4.9.5"
}
}