-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.88 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
{
"name": "lit-transition",
"version": "0.0.0",
"description": "",
"module": "dist/index",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/sijakret/lit-transition.git"
},
"scripts": {
"start": "webpack-dev-server",
"test-base": "karma start karma.conf.js",
"test": "npm run test-base -- --single-run",
"test-dev": "npm run test-base -- --no-single-run --browsers Chrome",
"test-bundle": "npm pack&&npm install --prefix test/bundle&&npm test --prefix test/bundle",
"build": "tsc",
"prepublish": "npm run build",
"build-doc": "webpack --mode production"
},
"author": "Jan Kretschmer",
"license": "MIT",
"devDependencies": {
"@stackblitz/sdk": "^1.3.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@webcomponents/webcomponentsjs": "^2.4.3",
"chai": "^4.2.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.2",
"favicons-webpack-plugin": "^3.0.1",
"html-webpack-plugin": "^4.3.0",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^5.0.2",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-mocha": "^2.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.2",
"lit-element": "^2.3.0",
"lit-element-router": "^2.0.1",
"loader-utils": "^2.0.0",
"markdown-it": "^10.0.0",
"markdown-it-highlight": "^0.2.0",
"mocha": "^7.1.1",
"node-sass": "^4.13.1",
"puppeteer": "^3.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"peerDependencies": {
"lit-html": "^1.2.1"
}
}