-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.62 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.62 KB
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
85
86
87
88
89
{
"name": "@piggly/fastify-session",
"version": "0.0.0",
"description": "A fastify plugin to better manage a fastify session following some Domain-Driven Design principles.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"check": "tsc --noEmit",
"clean": "rimraf dist",
"pre:commit": "npm run lint && npm run format && npm run test:once",
"prebuild": "npm run lint && npm run format && npm run test:once",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ext .ts --ignore-path .gitignore --fix src",
"test": "jest --coverage --watchAll",
"test:once": "jest --passWithNoTests",
"test:debug": "node --inspect ./node_modules/.bin/jest --runInBand",
"preversion": "npm run build",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run format && npm run lint",
"prepare": "husky"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"fastify",
"fastify-plugin",
"session",
"stateful"
],
"author": {
"name": "Caique Araujo",
"email": "caique@piggly.com.br",
"url": "https://github.com/caiquearaujo"
},
"license": "MIT",
"homepage": "https://github.com/piggly-dev/js-fastify-session#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/piggly-dev/js-fastify-session.git"
},
"bugs": {
"url": "https://github.com/piggly-dev/js-fastify-session/issues"
},
"devDependencies": {
"@fastify/cookie": "^9.3.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-perfectionist": "^2.10.0",
"eslint-plugin-prettier": "^5.1.3",
"fastify": "^4.27.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"dependencies": {
"fastify-plugin": "^4.5.1",
"safe-stable-stringify": "^2.4.3"
},
"peerDependencies": {
"@fastify/cookie": "^9.3.1",
"fastify": "^4.27.0"
}
}