-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
56 lines (56 loc) · 1.77 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
{
"name": "composited-card",
"main": "dist/composited-card.packed.js",
"description": "A simple, framework agnostic web component to facilitate the display of Gods Unchained card element(s).",
"license": "MIT",
"version": "1.1.3",
"homepage": "https://immutable.github.io/gu-composited-card",
"repository": {
"type": "git",
"url": "https://github.com/immutable/gu-composited-card.git"
},
"contributors": [
{
"name": "Tim Paul",
"email": "[email protected]",
"url": "https://glo.id.au"
}
],
"bugs": {
"email": "[email protected]"
},
"scripts": {
"clear:dist": "rm -rf dist/",
"clear:docs": "rm -rf docs/",
"prepublish": "yarn build",
"prebuild": "yarn clear:dist; yarn clear:docs;",
"build": "yarn build:src; yarn build:docs",
"prebuild:docs": "yarn clear:docs",
"prebuild:src": "yarn clear:dist",
"build:src": "webpack --config ./webpack.config.js",
"analyze:src": "webpack --config ./webpack.analyze.config.js",
"build:docs": "webpack --config ./webpack.ghpages.prod.config.js",
"dev:docs": "webpack-dev-server --config ./webpack.ghpages.dev.config.js",
"dev:demo": "webpack-dev-server --config ./webpack.demo.config.js"
},
"dependencies": {
"@juggle/resize-observer": "^3.2.0",
"@webcomponents/webcomponentsjs": "^2.3.0",
"lit-element": "2.3.1"
},
"devDependencies": {
"@types/node": "^12.7.2",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"file-saver": "^2.0.2",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^1.0.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"url-loader": "^2.1.0",
"webpack": "^4.39.2",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.0"
}
}