forked from PolymerLabs/uni-virtualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.97 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
{
"name": "lit-virtualizer",
"version": "0.4.2",
"description": "Virtual scrolling for lit-html and LitElement",
"license": "BSD-3-Clause",
"main": "lit-virtualizer.js",
"files": [
"/lit-virtualizer.js",
"/lit-virtualizer.d.ts",
"/lit-virtualizer.d.ts.map",
"/lib/"
],
"module": "lit-virtualizer.js",
"scripts": {
"bench": "tach --root=../.. --browser=chrome-headless test/benchmarks/${BENCH:-basic}.html --measure=fcp",
"bench:debug": "tach --root=../.. test/benchmarks/${BENCH:-basic}.html --measure=fcp",
"build": "tsc",
"checksize": "rollup -c; rm lit-virtualizer.bundled.js lit-virtualizer-with-polyfills.bundled.js",
"clean": "rm -r node_modules/",
"lint": "tslint --project ./",
"prepare": "npm run build",
"test": "karma start karma.conf.js",
"test:screenshot": "cd test/screenshot && rollup -c && mocha screenshot.js",
"generate-screenshots": "cd test/screenshot && rollup -c && mocha screenshot.js --generate-screenshots"
},
"author": "The Polymer Authors",
"devDependencies": {
"chai": "^4.2.0",
"http-server": "^0.11.1",
"karma": "^4.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^7.0.0",
"mocha": "^6.1.4",
"pixelmatch": "^4.0.2",
"pngjs": "^3.4.0",
"puppeteer": "^1.17.0",
"rollup": "^1.11.2",
"rollup-plugin-filesize": "^6.1.1",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-terser": "^5.0.0",
"tachometer": "^0.4.7",
"tslint": "^5.18.0",
"typescript": "^3.5.1"
},
"dependencies": {
"event-target-shim": "^5.0.1",
"lit-element": "^2.0.0",
"lit-html": "^1.0.0",
"resize-observer-polyfill": "^1.5.1",
"tslib": "^1.10.0"
}
}