-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.91 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
{
"name": "@cuaklabs/nestjs-firebase-admin",
"version": "1.0.1",
"description": "meow meow meow",
"keywords": [
"nestjs",
"firebase",
"firebase-admin"
],
"author": "Cuak McCuackl <[email protected]>",
"homepage": "https://github.com/cuaklabs/nestjs-meow/tree/master/packages/nestjs-firebase-admin#readme",
"license": "ISC",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cuaklabs/nestjs-meow.git"
},
"bugs": {
"url": "https://github.com/cuaklabs/nestjs-meow/issues"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/node": "20.16.14",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"prettier": "3.3.3",
"rimraf": "5.0.10",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"peerDependencies": {
"@nestjs/common": "^10.2.7 || ^9.4.0",
"firebase-admin": "^11.11.0 || ^12.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc --build tsconfig.json",
"build:clean": "rimraf lib",
"format": "prettier --write ./src/**/*.ts",
"format:check": "prettier --check ./src/**/*.ts",
"lint": "eslint --ext ts --ignore-path .gitignore ./src",
"prebuild": "pnpm run build:clean",
"publish:package": "pnpm publish",
"test": "jest --config=jest.config.mjs --runInBand",
"test:integration:js": "pnpm run test:js --selectProjects Integration",
"test:js": "jest --config=jest.js.config.mjs --runInBand",
"test:js:coverage": "pnpm run test:js --coverage",
"test:uncommitted": "pnpm run test --changedSince=HEAD",
"test:unit:js": "pnpm run test:js --selectProjects Unit"
}
}