Files
codeql-action/node_modules/bundle-name/package.json
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
886 B
JSON
Raw Normal View History

2022-02-01 18:01:11 +00:00
{
2023-07-13 09:09:17 +00:00
"name": "bundle-name",
"version": "3.0.0",
"description": "Get bundle name from a bundle identifier (macOS): `com.apple.Safari` → `Safari`",
2022-02-01 18:01:11 +00:00
"license": "MIT",
2023-07-13 09:09:17 +00:00
"repository": "sindresorhus/bundle-name",
2022-02-01 18:01:11 +00:00
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"engines": {
"node": ">=12"
},
"scripts": {
2023-07-13 09:09:17 +00:00
"test": "xo && ava"
2022-02-01 18:01:11 +00:00
},
"files": [
2023-07-13 09:09:17 +00:00
"index.js"
2022-02-01 18:01:11 +00:00
],
"keywords": [
2023-07-13 09:09:17 +00:00
"macos",
"plist",
"applescript",
"bundle",
"bundleid",
"bundlename",
"id",
"identifier",
"CFBundleName",
"CFBundleIdentifier",
"uti"
2022-02-01 18:01:11 +00:00
],
"dependencies": {
2023-07-13 09:09:17 +00:00
"run-applescript": "^5.0.0"
2022-02-01 18:01:11 +00:00
},
"devDependencies": {
"ava": "^3.15.0",
"xo": "^0.38.2"
}
2022-02-24 17:03:29 +00:00
}