-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.08 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": "lit-html-scoped-registry-helper",
"author": { "name": "Mathis Zeiher" },
"repository": { "url": "https://github.com/mzeiher/lit-html-scoped-registry-helper"},
"keywords": ["lit-html", "custom elements", "scoped custom elements"],
"type": "module",
"version": "1.0.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"checksize": "rollup -c && cat tokenizer.bundled.js | gzip -9 | wc -c && rm tokenizer.bundled.js",
"test": "karma start karma.config.cjs",
"test:debug": "karma start karma.config.cjs --debug --single-run=false",
"benchmark": "karma start karma.config.cjs --benchmark"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@rollup/plugin-alias": "^3.0.0",
"@rollup/plugin-node-resolve": "^6.0.0",
"@rollup/plugin-typescript": "^2.0.1",
"@types/benchmark": "^1.0.31",
"@types/jasmine": "^3.5.0",
"@types/node": "^12.12.20",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-plugin-istanbul": "^5.2.0",
"benchmark": "^2.1.4",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"karma": "^4.4.1",
"karma-benchmark": "^1.0.4",
"karma-benchmarkjs-reporter": "^1.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-firefox-launcher": "^1.2.0",
"karma-jasmine": "^2.0.1",
"karma-junit-reporter": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^7.0.2",
"karma-source-map-support": "^1.4.0",
"karma-sourcemap-loader": "^0.3.7",
"rollup": "^1.27.13",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-visualizer": "^3.3.1",
"tslib": "^1.10.0",
"typescript": "^3.7.3"
},
"dependencies": {
"lit-html": "^1.1.2"
}
}