UNPKG

content-security-policy

Version:
56 lines (55 loc) 1.41 kB
{ "name": "content-security-policy", "description": "Middleware to add Content-Security-Policy header.", "version": "0.3.4", "author": { "name": "Samuel Erdtman", "email": "samuel@erdtman.se" }, "keywords": [ "express", "connect", "content-security-policy", "security", "csp" ], "licenses": [ { "type": "MIT", "url": "http://www.opensource.org/licenses/MIT" } ], "readmeFilename": "README.md", "repository": { "type": "git", "url": "git@github.com:samuelerdtman/content-security-policy.git" }, "bugs": { "url": "https://github.com/samuelerdtman/content-security-policy/issues" }, "main": "lib/index.js", "dependencies": {}, "devDependencies": { "ava": "*", "live-server": "*", "npm-run-all": "*", "nyc": "*", "semistandard": "*", "watch": "*" }, "scripts": { "clean": "rm -rf coverage/ .nyc_output/", "pretest": "semistandard --fix", "test": "ava test/*.js", "coverage": "nyc npm test", "coveragehtml": "nyc report -r html", "precoveragehtml": "npm run coverage", "coveralls": "nyc report --reporter=text-lcov | coveralls", "live": "live-server -q --port=4003 --ignorePattern='(js|css|png)$' coverage", "watch": "watch 'npm run coveragehtml' test lib", "dev": "npm-run-all -p --silent watch live" }, "engines": { "node": ">= 0.4.0" } }