forked from lit/lit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.14 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
{
"name": "@lit-labs/scoped-registry-mixin",
"version": "1.0.0",
"description": "A mixin for using speculative \"scoped CustomElementRegistry\" with LitElement.",
"license": "BSD-3-Clause",
"homepage": "https://lit.dev/",
"repository": {
"type": "git",
"url": "https://github.com/lit/lit.git",
"directory": "packages/labs/scoped-registry-mixin"
},
"type": "module",
"main": "scoped-registry-mixin.js",
"module": "scoped-registry-mixin.js",
"typings": "scoped-registry-mixin.d.ts",
"directories": {
"test": "test"
},
"exports": {
".": {
"development": "./development/scoped-registry-mixin.js",
"default": "./scoped-registry-mixin.js"
}
},
"files": [
"/development/",
"!/development/test/",
"/scoped-registry-mixin.{d.ts,d.ts.map,js,js.map}"
],
"scripts": {
"build": "npm run clean && npm run build:ts --build && rollup -c",
"build:watch": "rollup -c --watch",
"build:ts": "tsc --build && treemirror development . '**/*.d.ts{,.map}'",
"build:ts:watch": "tsc --build --watch",
"clean": "rm -rf {scoped-registry-mixin}.{js,js.map,d.ts} development/ test/ *.tsbuildinfo",
"dev": "scripts/dev.sh",
"test": "npm run test:dev && npm run test:prod",
"test:dev": "cd ../../tests && npx wtr '../labs/scoped-registry-mixin/development/**/*_test.js'",
"test:prod": "TEST_PROD_BUILD=true npm run test:dev",
"test:watch": "npm run test:dev -- --watch",
"checksize": "rollup -c --environment=CHECKSIZE",
"regen-package-lock": "rm -rf node_modules package-lock.json; npm install"
},
"author": "Google LLC",
"dependencies": {
"@lit/reactive-element": "^1.0.0",
"lit": "^2.0.0"
},
"devDependencies": {
"@esm-bundle/chai": "^4.1.5",
"@types/chai": "^4.0.1",
"@types/mocha": "^9.0.0",
"@types/trusted-types": "^2.0.2",
"@web/test-runner-mocha": "^0.7.4",
"@webcomponents/scoped-custom-element-registry": "^0.0.3",
"chokidar-cli": "^3.0.0",
"concurrently": "^6.2.1",
"mocha": "^9.1.1",
"rollup": "^2.28.2",
"typescript": "^4.3.5",
"internal-scripts": "^1.0.0"
},
"publishConfig": {
"access": "public"
}
}