-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "comfyclock",
"version": "1.0.0",
"description": "The Comfiest Clock Events Set To World-Time! e.g. ComfyTimer.Every[ \"5 minutes\" ] = ( date ) => console.log( date );",
"main": "index.js",
"scripts": {
"build": "npm-run-all --sequential build:*",
"build:browserify": "browserify index.js -o ./dist/comfyclock.js",
"build:version": "node version.js",
"build:uglify": "uglifyjs --compress --mangle --source-map --output ./dist/comfyclock.min.js ./dist/comfyclock.js",
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/instafluff/ComfyClock.git"
},
"keywords": [
"instafluff",
"comfy",
"clock",
"timer",
"event",
"world",
"time",
"javascript",
"node",
"nodejs"
],
"author": "Instafluff",
"license": "MIT",
"bugs": {
"url": "https://github.com/instafluff/ComfyClock/issues"
},
"homepage": "https://github.com/instafluff/ComfyClock#readme",
"devDependencies": {
"browserify": "^16.2.3",
"npm-run-all": "^4.1.5",
"uglify-js": "^3.6.0"
},
"dependencies": {
"moment": "^2.24.0"
}
}