-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "@ephigenia/countdown",
"version": "0.0.2",
"contributors": [
{
"name": "Marcel Eichner",
"email": "[email protected]"
}
],
"author": "Ephigenia M. Eichner",
"license": "MIT",
"description": "Big countdown which is fully customizable via GET parameters written in pure simple vanilla javascript perfect to run in a dashboard display",
"keywords": [
"countdown",
"display",
"simple",
"responsive",
"big",
"dashboard",
"wallboard"
],
"repository": {
"type": "git",
"url": "[email protected]:Ephigenia/countdown.git"
},
"funding": {
"url": "http://github.com/sponsors/Ephigenia"
},
"bugs": {
"url": "https://github.com/Ephigenia/countdown/issues"
},
"engines": {
"node": ">14.17.3",
"npm": ">6.14.11"
},
"scripts": {
"build:css": "node-sass --output-style compressed public/styles.scss > public/styles.css",
"watch": "node-sass --output-style compressed --watch ./public --output ./public",
"postversion": "git push && git push --tags",
"preversion": "npm run test",
"start": "http-server public",
"start:dev": "http-server -c 0 public",
"test": "echo 'no tests defined so far' && exit 0"
},
"dependencies": {
"http-server": "0.12.3"
},
"devDependencies": {
"node-sass": "^6.0.1"
}
}