forked from darkskyapp/tz-lookup-oss
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.72 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.72 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@photostructure/tz-lookup",
"version": "11.4.0",
"description": "fast time zone lookup",
"keywords": [
"timezone",
"time zone",
"tz",
"latitude",
"longitude",
"coordinates",
"geolocation",
"geo",
"iana"
],
"license": "CC0-1.0",
"author": {
"email": "tzlookup@photostructure.com",
"name": "PhotoStructure, Inc."
},
"main": "tz.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha",
"prettier": "prettier --write package.json test.js tz_template.js pack.js",
"install:pinact": "go install github.com/suzuki-shunsuke/pinact/cmd/pinact@latest",
"update": "npm-check-updates --upgrade --install always && pinact run -u ",
"release": "release-it"
},
"devDependencies": {
"geo-tz": "^8.1.4",
"inhabited": "^2.0.3",
"luxon": "^3.7.2",
"mocha": "^11.7.5",
"npm-check-updates": "^19.1.2",
"prettier": "^3.7.4",
"release-it": "^19.0.4",
"uglify-js": "^3.19.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/photostructure/tz-lookup.git"
},
"publishConfig": {
"access": "public"
},
"# release-it.npm.skipChecks": "Required for OIDC Trusted Publishing - bypasses npm auth checks since OIDC handles authentication automatically. See: https://github.com/release-it/release-it/issues/1244 and https://docs.npmjs.com/trusted-publishers#supported-cicd-providers",
"release-it": {
"git": {
"requireBranch": "main",
"commitMessage": "chore(package): Release ${version}",
"tagName": "${version}",
"commitArgs": "--gpg-sign",
"tagArgs": "--sign"
},
"github": {
"release": true
},
"npm": {
"publish": true,
"skipChecks": true
}
}
}