nbff-parser
Version:
A simple parser for the Netscape Bookmark file format
40 lines • 987 B
JSON
{
"name": "nbff-parser",
"version": "0.5.1",
"description": "A simple parser for the Netscape Bookmark file format",
"keywords": [
"bookmarks",
"parser",
"browser",
"netscape"
],
"author": "Michael Tsulaya <metsulaya@gmail.com>",
"main": "index.js",
"sideEffects": false,
"type": "module",
"types": "index.d.ts",
"engines": {
"node": "^18.0.0 || >=22.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/immitsu/nbff-parser"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.25.0",
"@size-limit/preset-small-lib": "^11.2.0",
"eslint": "^9.25.0",
"eslint-plugin-perfectionist": "^4.11.0",
"prettier": "^3.5.3",
"size-limit": "^11.2.0",
"typescript": "^5.8.3"
},
"scripts": {
"test:js": "node --test test/**/*.spec.js",
"test:lint": "eslint .",
"test:size": "size-limit",
"test:types": "tsc --noEmit test/**/*.types.ts",
"test": "pnpm run /^test:/"
}
}