package.json
1 { 2 "name": "content-disposition", 3 "description": "Create and parse Content-Disposition header", 4 "version": "1.0.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 "dependencies": { 15 "safe-buffer": "5.2.1" 16 }, 17 "devDependencies": { 18 "deep-equal": "1.0.1", 19 "eslint": "7.32.0", 20 "eslint-config-standard": "13.0.1", 21 "eslint-plugin-import": "2.25.3", 22 "eslint-plugin-markdown": "2.2.1", 23 "eslint-plugin-node": "11.1.0", 24 "eslint-plugin-promise": "5.2.0", 25 "eslint-plugin-standard": "4.1.0", 26 "mocha": "^9.2.2", 27 "nyc": "15.1.0" 28 }, 29 "files": [ 30 "LICENSE", 31 "HISTORY.md", 32 "README.md", 33 "index.js" 34 ], 35 "engines": { 36 "node": ">= 0.6" 37 }, 38 "scripts": { 39 "lint": "eslint .", 40 "test": "mocha --reporter spec --bail --check-leaks test/", 41 "test-ci": "nyc --reporter=lcovonly --reporter=text npm test", 42 "test-cov": "nyc --reporter=html --reporter=text npm test" 43 } 44 }