-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.13 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
{
"name": "customizable-analog-clock",
"version": "1.0.0",
"description": "Total CSS and JS Analog Clock with Maximum Customization. Including Emojis for Clock Indicators",
"main": "lib/analog-clock.js",
"types": "lib/analog-clock.d.ts",
"homepage": "https://github.com/AjinkyaBijwe/Customizable-Analog-Clock",
"bugs": {
"url": "https://github.com/AjinkyaBijwe/Customizable-Analog-Clock/issues"
},
"devDependencies": {
"jsmin": "^1.0.1",
"typescript": "^3.9.6"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"minify": "jsmin -o lib/analog-clock.min.js lib/analog-clock.js",
"build": "tsc",
"build-prod": "tsc && npm run minify",
"watch": "tsc --watch",
"deploy": "npm run build-prod && npm version patch && npm publish"
},
"keywords": [
"Analog Clock",
"Customizable",
"Neumorphic Design"
],
"author": "Ajinkya Bijwe",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AjinkyaBijwe/Customizable-Analog-Clock.git"
}
}