-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.28 KB
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
{
"name": "timezone-support-complete-example",
"version": "0.0.1",
"description": "Demonstrates how to use timezone-support in a Node.js application, with either complete or limited time zone data.",
"author": {
"name": "Ferdinand Prantl",
"email": "[email protected]",
"url": "http://prantl.tk"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/timezone-support/blob/master/LICENSE"
}
],
"homepage": "https://github.com/prantlf/timezone-support#readme",
"repository": {
"type": "git",
"url": "https://github.com/prantlf/timezone-support.git"
},
"bugs": {
"url": "https://github.com/prantlf/timezone-support/issues"
},
"engines": {
"node": ">=14.8"
},
"scripts": {
"prepare": "rollup -c rollup-complete.config.mjs",
"lint": "denolint",
"build:complete": "rollup -c rollup-complete.config.mjs",
"build:limited": "rollup -c rollup-limited.config.mjs",
"test": "denolint && node out/app.js"
},
"main": "out/app.js",
"dependencies": {
"timezone-support": "link:../.."
},
"devDependencies": {
"@rollup/plugin-commonjs": "23.0.3",
"denolint": "2.0.5",
"rollup": "3.5.1",
"rollup-plugin-cleanup": "3.2.1",
"rollup-plugin-includepaths": "0.2.4"
}
}