-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"name": "fastify-permissions-policy",
"version": "1.0.2",
"description": "Fastify plugin for setting custom permissions policies. ",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "jest",
"clean": "rimraf dist",
"tsc": "tsc --project tsconfig.json --pretty --declaration",
"build": "yarn clean && yarn tsc"
},
"babel": {},
"repository": {
"type": "git",
"url": "git+https://github.com/JosephScript/fastify-permissions-policy.git"
},
"keywords": [
"permissions-policy",
"feature-policy",
"fastify",
"fastify-plugin",
"middleware"
],
"author": "Joseph Szczesniak <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JosephScript/fastify-permissions-policy/issues"
},
"homepage": "https://github.com/JosephScript/fastify-permissions-policy#readme",
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix"
},
"dependencies": {
"fastify-plugin": "^3.0.0",
"permissions-policy": "^0.6.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.13.10",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.24",
"@types/node": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint": "^7.30.0",
"fastify": "^3.0.0",
"husky": "^7.0.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.3.0"
}
}