-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 1.83 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
{
"name": "lit-ssr",
"type": "module",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node --experimental-vm-modules ./demo/server.js",
"test": "npm run test:unit && npm run test:integration",
"test:integration": "node --experimental-vm-modules test/integration/test.js",
"test:unit": "node --experimental-vm-modules ./test/all-tests.js | tap-spec",
"test:client": "karma start karma.conf.cjs",
"format": "prettier src/**/*.ts --write"
},
"author": "",
"license": "BSD-3-Clause",
"repository": "PolymerLabs/lit-ssr",
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@koa/router": "^8.0.8",
"@open-wc/testing": "^2.5.8",
"@open-wc/testing-karma": "^3.3.10",
"@types/chai": "^4.2.11",
"@types/karma": "^4.4.1",
"@types/koa__router": "^8.0.2",
"@types/mocha": "^7.0.2",
"@types/node": "^13.7.4",
"@types/parse5": "^5.0.0",
"@types/resolve": "^1.14.0",
"@types/tape-promise": "^4.0.0",
"chai": "^4.2.0",
"command-line-args": "^5.1.1",
"deepmerge": "^4.2.2",
"karma": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"mocha": "^7.1.1",
"prettier": "^1.19.1",
"tap-spec": "^5.0.0",
"tape-promise": "^4.0.0",
"typescript": "^3.7.2"
},
"dependencies": {
"@types/koa": "^2.0.49",
"@types/koa-static": "^4.0.1",
"@types/tape": "^4.2.33",
"@webcomponents/shadycss": "^1.9.1",
"koa": "^2.7.0",
"koa-node-resolve": "^1.0.0-pre.5",
"koa-static": "^5.0.0",
"lit-element": "Polymer/lit-html#hydration-hydrate",
"lit-html": "Polymer/lit-html#hydration",
"template-shadowroot": "webcomponents/template-shadowroot",
"parse5": "^5.1.0",
"resolve": "^1.10.1",
"tape": "^4.11.0"
},
"engines": {
"node": ">=13.9.0"
}
}