-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.6 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
{
"name": "@danielbayley/domain-bundle-id",
"version": "1.0.4",
"description": "Get a macOS bundle identifier from a domain.",
"keywords": [
"bundle",
"bundleid",
"id",
"identifier",
"CFBundleName",
"CFBundleIdentifier",
"macos",
"osx",
"plist"
],
"homepage": "https://github.com/danielbayley/domain-bundle-id#readme",
"repository": "danielbayley/domain-bundle-id",
"bugs": "https://github.com/danielbayley/domain-bundle-id/issues",
"author": {
"name": "Daniel Bayley",
"email": "daniel.bayley@me.com",
"url": "github.com/danielbayley"
},
"license": "MIT",
"type": "module",
"main": "index.js",
"engines": {
"node": "^14 || >=16"
},
"files": [
"index.js"
],
"devDependencies": {
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"xo": "^0.53.1"
},
"dependencies": {
"pascal-case": "^3.1.2",
"url-parse-lax": "^5.0.0"
},
"lint-staged": {
"*.js": [
"xo",
"jest --bail --findRelatedTests"
]
},
"xo": {
"space": true,
"semicolon": false,
"overrides": [
{
"files": [
"*.test.js"
],
"envs": [
"jest"
]
}
]
},
"scripts": {
"pre-commit": "lint-staged",
"test": "xo && node --experimental-vm-modules node_modules/.bin/jest ${GITHUB_ACTIONS+--all --ci --no-cache}",
"prepublishOnly": "npm test",
"prerelease": "git stash --include-untracked",
"release": "npm version --",
"postversion": "git push --follow-tags && npm publish && git stash pop --index",
"clean": "jest --clearCache --config {}"
}
}