-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 948 Bytes
/
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
{
"name": "fancy-timer",
"version": "1.0.2",
"description": "Digital countdown timer, clock and more",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"repository": {
"git": "https://github.com/Lexxus/fancy-timer"
},
"homepage": "https://lexxus.github.io/fancy-timer/",
"scripts": {
"build": "npm run compile && npm run patch && npm run minify",
"compile": "tsc -p .",
"patch": "node build-patch ./build/index.js",
"minify": "terser -c -m -o ./build/index.min.js ./build/index.js",
"build:demo": "tsc -p ./demo",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"timer",
"countdown",
"digital clock"
],
"author": "Oleksii Teterin",
"license": "MIT",
"devDependencies": {
"terser": "^4.8.0",
"typescript": "^3.9.6"
},
"files": [
"package.json",
"README.md",
"LICENSE",
"CHANGELOG.md",
"build/*",
"css/*"
]
}