61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"name": "feature-policy",
|
|
"author": "Evan Hahn <me@evanhahn.com> (https://evanhahn.com)",
|
|
"description": "Middleware to set the Feature-Policy HTTP header",
|
|
"version": "0.3.0",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"helmet",
|
|
"security",
|
|
"express",
|
|
"connect",
|
|
"feature-policy"
|
|
],
|
|
"homepage": "https://helmetjs.github.io/docs/feature-policy/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/helmetjs/feature-policy.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/helmetjs/feature-policy/issues",
|
|
"email": "me@evanhahn.com"
|
|
},
|
|
"scripts": {
|
|
"pretest": "npm run lint",
|
|
"prepublishOnly": "npm run build",
|
|
"lint": "eslint --fix '**/*.ts'",
|
|
"test": "jest --config test/jest-config.json",
|
|
"clean": "rm -rf dist",
|
|
"build": "npm run clean && tsc"
|
|
},
|
|
"engines": {
|
|
"node": ">=4.0.0"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"typings": "./dist/index.d.ts",
|
|
"files": [
|
|
"CHANGELOG.md",
|
|
"LICENSE",
|
|
"README.md",
|
|
"dist/index.js",
|
|
"dist/index.d.ts"
|
|
],
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@types/connect": "^3.4.32",
|
|
"@types/dashify": "^1.0.0",
|
|
"@types/jest": "^24.0.12",
|
|
"@types/supertest": "^2.0.7",
|
|
"@typescript-eslint/eslint-plugin": "^1.7.0",
|
|
"@typescript-eslint/parser": "^1.7.0",
|
|
"connect": "^3.6.6",
|
|
"dashify": "^2.0.0",
|
|
"eslint": "^5.16.0",
|
|
"eslint-config-helmet": "^0.2.0",
|
|
"jest": "^24.8.0",
|
|
"supertest": "^4.0.2",
|
|
"ts-jest": "^24.0.2",
|
|
"typescript": "^3.4.5"
|
|
}
|
|
}
|