-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.62 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
{
"name": "@onboardbase/nudgeer-safe",
"version": "0.2.1",
"description": "Injection of Security headers in modern frameworks, modify them and Enjoy secure apps within a click",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"prepare:docs": "api-extractor run --local --verbose",
"generate:docs": "yarn prepare:docs && api-documenter markdown --input-folder temp --output-folder docs",
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"preversion": "yarn lint",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onboardbase/nudgeer-safe.git"
},
"keywords": [
"HTTPS",
"security",
"next-safe",
"astro-safe",
"headers",
"Nudgeer"
],
"author": "Onboardbase",
"bugs": {
"license": "MIT",
"url": "https://github.com/onboardbase/nudgeer-safe/issues"
},
"homepage": "https://nudgeer.com",
"devDependencies": {
"@types/jest": "29.4.0",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.52.0",
"eslint": "8.35.0",
"eslint-plugin-jest": "27.2.1",
"jest": "29.4.3",
"prettier": "2.8.4",
"ts-jest": "29.0.5",
"typescript": "4.9.5"
},
"files": [
"lib/**/*"
],
"dependencies": {
"cosmiconfig": "^9.0.0",
"zod": "^3.22.4"
}
}