-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 2.72 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@vvo/tzdb",
"version": "0.0.0-development",
"description": "Always up to date list of time zones, with grouping and major cities",
"keywords": [
"timezones",
"time zones",
"time zone",
"timezones list",
"time zones list",
"IANA time zones",
"geonames"
],
"repository": {
"type": "git",
"url": "https://github.com/vvo/tzdb.git"
},
"license": "MIT",
"author": "Vincent Voyer <[email protected]>",
"sideEffects": false,
"main": "dist/",
"module": "lib/",
"types": "dist/index.d.ts",
"files": [
"dist/",
"lib/",
"time-zones-names.json",
"raw-time-zones.json",
"LICENSE",
"README.md",
"index.d.ts"
],
"scripts": {
"build": "babel lib/ -d dist/ --source-maps --ignore '**/*.test.js' --delete-dir-on-start",
"postbuild": "cp index.d.ts dist/",
"format": "prettier --write '**/*.*' && eslint . --fix",
"generate": "babel-node generate.js",
"lint": "prettier --check '**/*.*' && eslint .",
"prepublishOnly": "yarn build",
"test": "yarn lint && yarn build"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "12"
}
}
]
]
},
"prettier": {
"trailingComma": "all",
"overrides": [
{
"files": "*.md",
"options": {
"printWidth": 100
}
}
]
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
},
"extends": [
"eslint:recommended",
"plugin:import/recommended"
],
"rules": {
"arrow-body-style": [
"error",
"always"
],
"curly": "error",
"import/order": [
"error",
{
"newlines-between": "always"
}
]
}
},
"dependencies": {
"luxon": "1.26.0"
},
"devDependencies": {
"@babel/cli": "7.13.16",
"@babel/core": "7.14.8",
"@babel/node": "7.13.13",
"@babel/preset-env": "7.14.9",
"babel-eslint": "10.1.0",
"csv-parse": "4.15.4",
"dotenv": "9.0.2",
"eslint": "7.32.0",
"eslint-plugin-import": "2.24.1",
"got": "11.8.2",
"lodash": "4.17.21",
"prettier": "2.2.1",
"prettier-plugin-packagejson": "2.2.11",
"semantic-release": "17.4.5",
"semantic-release-cli": "5.4.3",
"unzipper": "0.10.11"
},
"publishConfig": {
"access": "public"
},
"renovate": {
"extends": [
"config:js-lib",
":automergePatch",
":automergeBranch",
":automergePatch",
":automergeBranch",
":automergeLinters",
":automergeTesters",
":automergeTypes"
]
}
}