-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "@marcreichel/apple-tv-card",
"version": "0.0.0",
"description": "An Apple TV Card with hover animation and parallax effect",
"main": "dist/main.js",
"private": false,
"keywords": [
"apple-tv",
"css",
"javascript",
"widget",
"card",
"parallax",
"parallax-effect"
],
"scripts": {
"build": "webpack --config webpack.config.js",
"watch": "webpack --watch --progress --config webpack.config.js",
"test": "echo \"No test specified\""
},
"repository": {
"type": "git",
"url": "https://github.com/marcreichel/apple-tv-card.git"
},
"author": {
"name": "Marc Reichel",
"url": "https://marcreichel.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/marcreichel/apple-tv-card/issues"
},
"homepage": "https://github.com/marcreichel/apple-tv-card#readme",
"files": [
"LICENSE.md",
"README.md",
"src/index.js",
"src/styles.scss",
"dist/main.js",
"dist/main.css"
],
"devDependencies": {
"autoprefixer": "^10.3.1",
"css-loader": "^5.2.7",
"mini-css-extract-plugin": "^1.6.2",
"postcss-loader": "^5.3.0",
"sass": "^1.38.0",
"sass-loader": "^11.1.1",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0"
}
}