-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
89 lines (89 loc) · 2.39 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
{
"name": "countries-and-timezones",
"version": "3.7.2",
"description": "Minimalistic library to work with countries and timezones data.",
"main": "./dist/index.js",
"module": "./esm/index.js",
"types": "./esm/types.d.ts",
"exports": {
"import": {
"types": "./esm/types.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./dist/types.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"esm"
],
"scripts": {
"build": "rollup -c && sh bin/fixTypes.sh && sh bin/addEsmPackage.sh",
"lint:js": "xo --fix",
"lint:json": "prettier --write \"**/*.json\"",
"lint:md": "markdownlint \"**/*.md\" --fix --dot --ignore-path .gitignore && prettier --write \"**/*.md\"",
"lint": "yarn lint:js && yarn lint:json && yarn lint:md",
"prepack": "yarn run build",
"release": "release-it",
"prepare": "husky",
"test:unit": "mocha",
"test:types": "dtslint types",
"test": "yarn run test:unit && yarn run test:types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manuelmhtr/countries-and-timezones.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=8.x",
"npm": ">=5.x"
},
"keywords": [
"Countries",
"Timezones",
"Country",
"Timezone",
"Time",
"Date",
"DST",
"IANA",
"ICANN"
],
"author": "Manuel de la Torre",
"license": "MIT",
"bugs": {
"url": "https://github.com/manuelmhtr/countries-and-timezones/issues"
},
"homepage": "https://github.com/manuelmhtr/countries-and-timezones#readme",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/register": "^7.15.3",
"@release-it/conventional-changelog": "^8.0.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"chai": "^4.3.4",
"dtslint": "^4.1.3",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"markdownlint-cli": "^0.42.0",
"mocha": "^8.3.2",
"proxyquire": "^2.1.3",
"release-it": "^17.6.0",
"rollup": "^2.45.2",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^10.0.0",
"typescript": "^4.3.5",
"xo": "^0.59.3"
}
}