-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.41 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@yikesable/fastify-acl",
"version": "3.0.0",
"description": "ACL-like authorization for Fastify apps",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build:0": "run-s clean",
"build:1-declaration": "tsc -p declaration.tsconfig.json",
"build": "run-s build:*",
"check:installed-check": "installed-check -i eslint-plugin-jsdoc -i knip",
"check:knip": "knip",
"check:lint": "eslint --report-unused-disable-directives .",
"check:tsc": "tsc",
"check:type-coverage": "type-coverage --detail --strict --at-least 95 --ignore-files 'test/*.test.js'",
"check": "run-s clean && run-p check:*",
"clean:declarations": "rm -rf $(find . -maxdepth 2 -type f -name '*.d.ts*')",
"clean": "run-p clean:*",
"prepare": "husky install",
"prepublishOnly": "run-s build",
"test:node": "node --test test/*.test.js",
"test-ci": "run-s test:*",
"test": "run-s check test:*",
"watch:test": "node --test --watch test/*.test.js",
"watch": "run-p watch:*"
},
"author": "Pelle Wessman <[email protected]> (https://yikesable.dev/)",
"license": "MIT",
"files": [
"*.js",
"*.d.ts",
"*.d.ts.map",
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.d.ts.map"
],
"engines": {
"node": ">=16.17.0"
},
"dependencies": {
"debug": "^4.3.1",
"fastify-plugin": "^4.5.0",
"url-pattern": "^1.0.3"
},
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/node": "^16.18.34",
"@voxpelli/eslint-config": "^18.0.0",
"@voxpelli/tsconfig": "^8.0.0",
"eslint": "^8.42.0",
"eslint-plugin-es-x": "^7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.2.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-unicorn": "^47.0.0",
"fastify": "^4.17.0",
"husky": "^8.0.3",
"installed-check": "^7.1.1",
"knip": "^2.13.0",
"npm-run-all2": "^6.0.5",
"type-coverage": "^2.26.0",
"typescript": "~5.1.3"
},
"peerDependencies": {
"fastify": "^4.17.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yikesable/fastify-acl"
},
"bugs": {
"url": "https://github.com/yikesable/fastify-acl/issues"
},
"keywords": [
"fastify",
"acl",
"authorization"
]
}