|
4 | 4 | "description": "A testing companion to firebase-functions.", |
5 | 5 | "main": "lib/index.js", |
6 | 6 | "scripts": { |
7 | | - "build": "npm i && node_modules/.bin/tsc -p tsconfig.release.json", |
8 | | - "build:pack": "npm prune --production && rm -rf lib && npm install && node_modules/.bin/tsc -p tsconfig.release.json && npm pack && npm install", |
9 | | - "build:release": "npm ci --production && npm install --no-save typescript firebase-functions firebase-admin && node_modules/.bin/tsc -p tsconfig.release.json", |
10 | | - "lint": "node_modules/.bin/tslint src/{**/*,*}.ts spec/{**/*,*}.ts", |
11 | | - "pretest": "node_modules/.bin/tsc", |
| 7 | + "build": "npm i && tsc -p tsconfig.release.json", |
| 8 | + "build:pack": "npm prune --production && rm -rf lib && npm install && tsc -p tsconfig.release.json && npm pack && npm install", |
| 9 | + "build:release": "npm ci --production && npm install --no-save typescript firebase-functions firebase-admin && tsc -p tsconfig.release.json", |
| 10 | + "lint": "tslint src/{**/*,*}.ts spec/{**/*,*}.ts", |
| 11 | + "pretest": "tsc", |
12 | 12 | "test": "mocha .tmp/spec/index.spec.js", |
13 | 13 | "posttest": "npm run lint && rm -rf .tmp", |
14 | | - "preintegrationTest": "node_modules/.bin/tsc", |
| 14 | + "preintegrationTest": "tsc", |
15 | 15 | "integrationTest": "firebase emulators:exec --project=not-a-project --only firestore 'mocha .tmp/spec/integration/**/*.spec.js'", |
16 | 16 | "postintegrationTest": "rm -rf .tmp", |
17 | 17 | "format": "prettier --check '**/*.{json,ts,yml,yaml}'", |
|
54 | 54 | "prettier": "^1.19.1", |
55 | 55 | "sinon": "^7.5.0", |
56 | 56 | "tslint": "^5.20.0", |
57 | | - "typescript": "^4.2.5" |
| 57 | + "typescript": "^5.7.3" |
58 | 58 | }, |
59 | 59 | "peerDependencies": { |
60 | 60 | "firebase-admin": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0", |
|
0 commit comments