time-to-botec

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

package.json (756B)


      1 {
      2 	"name": "strip-final-newline",
      3 	"version": "3.0.0",
      4 	"description": "Strip the final newline character from a string/buffer",
      5 	"license": "MIT",
      6 	"repository": "sindresorhus/strip-final-newline",
      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 		"strip",
     26 		"trim",
     27 		"remove",
     28 		"delete",
     29 		"final",
     30 		"last",
     31 		"end",
     32 		"file",
     33 		"newline",
     34 		"linebreak",
     35 		"character",
     36 		"string",
     37 		"buffer"
     38 	],
     39 	"devDependencies": {
     40 		"ava": "^3.15.0",
     41 		"xo": "^0.39.1"
     42 	}
     43 }