-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
67 lines (67 loc) · 1.68 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "next-secure-headers",
"version": "2.2.0",
"description": "Sets secure response headers for Next.js.",
"keywords": [
"Next.js",
"headers",
"security",
"csp"
],
"homepage": "https://github.com/jagaapple/next-secure-headers",
"bugs": "https://github.com/jagaapple/next-secure-headers/issues",
"license": "MIT",
"author": "Jaga Apple",
"contributors": [],
"files": [
"lib",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"LICENSE",
"package.json",
"README.md"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/jagaapple/next-secure-headers.git"
},
"scripts": {
"prebuild": "rm -rf ./lib",
"build": "tsc",
"lint": "eslint ./src/**/*.ts",
"fix": "eslint --fix ./src/**/*.ts",
"prepublishOnly": "npm run build",
"test": "jest --coverage",
"coverage": "codecov",
"clean": "rm -rf ./lib ./coverage"
},
"config": {},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/jest-plugin-context": "^2.9.4",
"@types/node": "^14.14.31",
"@types/react": "^16.14.2",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"codecov": "^3.8.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"jest-plugin-context": "^2.9.0",
"prettier": "^2.2.1",
"react": "^16.14.0",
"ts-jest": "^26.5.2",
"typescript": "^4.1.3"
},
"peerDependencies": {},
"engines": {
"node": ">=10.0.0"
},
"engineStrict": false,
"preferGlobal": false,
"private": false
}