time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

package.json (824B)


      1 {
      2 	"name": "bundle-name",
      3 	"version": "3.0.0",
      4 	"description": "Get bundle name from a bundle identifier (macOS): `com.apple.Safari` → `Safari`",
      5 	"license": "MIT",
      6 	"repository": "sindresorhus/bundle-name",
      7 	"funding": "https://github.com/sponsors/sindresorhus",
      8 	"author": {
      9 		"name": "Sindre Sorhus",
     10 		"email": "sindresorhus@gmail.com",
     11 		"url": "https://sindresorhus.com"
     12 	},
     13 	"type": "module",
     14 	"exports": "./index.js",
     15 	"engines": {
     16 		"node": ">=12"
     17 	},
     18 	"scripts": {
     19 		"test": "xo && ava"
     20 	},
     21 	"files": [
     22 		"index.js"
     23 	],
     24 	"keywords": [
     25 		"macos",
     26 		"plist",
     27 		"applescript",
     28 		"bundle",
     29 		"bundleid",
     30 		"bundlename",
     31 		"id",
     32 		"identifier",
     33 		"CFBundleName",
     34 		"CFBundleIdentifier",
     35 		"uti"
     36 	],
     37 	"dependencies": {
     38 		"run-applescript": "^5.0.0"
     39 	},
     40 	"devDependencies": {
     41 		"ava": "^3.15.0",
     42 		"xo": "^0.38.2"
     43 	}
     44 }