CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
package.json41 linesDownload Raw Back to content-disposition
1{2  "name": "content-disposition",3  "description": "Create and parse Content-Disposition header",4  "version": "1.1.0",5  "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",6  "license": "MIT",7  "keywords": [8    "content-disposition",9    "http",10    "rfc6266",11    "res"12  ],13  "repository": "jshttp/content-disposition",14  "funding": {15    "type": "opencollective",16    "url": "https://opencollective.com/express"17  },18  "devDependencies": {19    "c8": "^10.1.2",20    "eslint": "^8.57.1",21    "eslint-config-standard": "^14.1.1",22    "eslint-plugin-import": "^2.32.0",23    "eslint-plugin-markdown": "^3.0.1",24    "eslint-plugin-node": "^11.1.0",25    "eslint-plugin-promise": "^6.6.0",26    "eslint-plugin-standard": "^4.1.0"27  },28  "files": [29    "index.js"30  ],31  "engines": {32    "node": ">=18"33  },34  "scripts": {35    "lint": "eslint .",36    "test": "node --test --test-reporter spec",37    "test-ci": "c8 --reporter=lcovonly --reporter=text npm test",38    "test-cov": "c8 --reporter=html --reporter=text npm test"39  }40}41