forked from open-wc/open-wc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.48 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
{
"name": "@open-wc/scoped-elements",
"version": "1.1.1",
"publishConfig": {
"access": "public"
},
"description": "Allows to auto define custom elements scoping them",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/open-wc/open-wc.git",
"directory": "packages/scoped-elements"
},
"author": "open-wc",
"homepage": "https://github.com/open-wc/open-wc/tree/master/packages/scoped-elements",
"module": "index.js",
"scripts": {
"demo-build:before-nesting": "rollup -c demo/before-nesting/rollup.config.js",
"demo-build:no-scope": "rollup -c demo/no-scope/rollup.config.js",
"demo-build:with-scope": "rollup -c demo/with-scope/rollup.config.js",
"prepublishOnly": "../../scripts/insert-header.js",
"site:build": "run-p demo-build:*",
"start:before-nesting": "es-dev-server -c demo/before-nesting/server.js",
"start:no-scope": "es-dev-server -c demo/no-scope/server.js",
"start:with-scope": "es-dev-server -c demo/with-scope/server.js",
"test": "cd ../../ && yarn test:browser --grep \"packages/scoped-elements/test/*.test.js\"",
"test:watch": "cd ../../ && yarn test:browser:watch --grep \"packages/scoped-elements/test/*.test.js\""
},
"files": [
"*.d.ts",
"*.js",
"src"
],
"keywords": [
"lit-html",
"lit-element",
"web components",
"utils",
"helpers"
],
"dependencies": {
"@open-wc/dedupe-mixin": "^1.2.17",
"lit-html": "^1.0.0"
},
"sideEffects": false
}