|
2 | 2 | "name": "firebase-functions", |
3 | 3 | "version": "2.3.1", |
4 | 4 | "description": "Firebase SDK for Cloud Functions", |
5 | | - "main": "lib/index.js", |
6 | | - "scripts": { |
7 | | - "build": "node_modules/.bin/tsc -p tsconfig.release.json", |
8 | | - "build:pack": "rm -rf lib && npm install && node_modules/.bin/tsc -p tsconfig.release.json && npm pack", |
9 | | - "build:release": "npm install --production && npm install typescript firebase-admin && node_modules/.bin/tsc -p tsconfig.release.json", |
10 | | - "format": "prettier --write '**/*.ts'", |
11 | | - "pretest": "node_modules/.bin/tsc && cp -r spec/fixtures .tmp/spec", |
12 | | - "test": "npm run mocha", |
13 | | - "mocha": "mocha .tmp/spec/index.spec.js", |
14 | | - "posttest": "npm run format && rm -rf .tmp", |
15 | | - "postinstall": "node ./upgrade-warning" |
16 | | - }, |
17 | | - "repository": { |
18 | | - "type": "git", |
19 | | - "url": "git+https://github.com/firebase/firebase-functions.git" |
20 | | - }, |
21 | 5 | "keywords": [ |
22 | 6 | "firebase", |
23 | 7 | "functions", |
24 | 8 | "google", |
25 | 9 | "cloud" |
26 | 10 | ], |
27 | | - "author": "Firebase Team", |
28 | | - "license": "MIT", |
| 11 | + "homepage": "https://github.com/firebase/firebase-functions#readme", |
29 | 12 | "bugs": { |
30 | 13 | "url": "https://github.com/firebase/firebase-functions/issues" |
31 | 14 | }, |
32 | | - "homepage": "https://github.com/firebase/firebase-functions#readme", |
33 | | - "devDependencies": { |
34 | | - "@types/chai": "^3.4.32", |
35 | | - "@types/chai-as-promised": "0.0.28", |
36 | | - "@types/mocha": "^5.2.5", |
37 | | - "@types/mock-require": "^1.3.3", |
38 | | - "@types/nock": "^0.54.32", |
39 | | - "@types/node": "^6.0.38", |
40 | | - "@types/sinon": "^1.16.29", |
41 | | - "chai": "^3.5.0", |
42 | | - "chai-as-promised": "^5.2.0", |
43 | | - "firebase-admin": "^7.0.0", |
44 | | - "istanbul": "^0.4.2", |
45 | | - "mocha": "^5.2.0", |
46 | | - "mock-require": "^2.0.1", |
47 | | - "nock": "^9.0.0", |
48 | | - "prettier": "^1.13.7", |
49 | | - "sinon": "^1.17.4", |
50 | | - "ts-node": "^7.0.1", |
51 | | - "typescript": "~3.1.0" |
| 15 | + "repository": { |
| 16 | + "type": "git", |
| 17 | + "url": "git+https://github.com/firebase/firebase-functions.git" |
52 | 18 | }, |
53 | | - "peerDependencies": { |
54 | | - "firebase-admin": "^7.0.0" |
| 19 | + "license": "MIT", |
| 20 | + "author": "Firebase Team", |
| 21 | + "main": "lib/index.js", |
| 22 | + "types": "lib/index.d.ts", |
| 23 | + "scripts": { |
| 24 | + "build:pack": "rm -rf lib && npm install && tsc -p tsconfig.release.json && npm pack", |
| 25 | + "build:release": "npm install --production && npm install typescript firebase-admin && tsc -p tsconfig.release.json", |
| 26 | + "build": "tsc -p tsconfig.release.json", |
| 27 | + "format": "prettier --write '**/*.ts'", |
| 28 | + "posttest": "npm run format", |
| 29 | + "test": "mocha -r ts-node/register ./spec/index.spec.ts" |
55 | 30 | }, |
56 | 31 | "dependencies": { |
57 | | - "@types/cors": "^2.8.1", |
58 | | - "@types/express": "^4.11.1", |
59 | | - "@types/jsonwebtoken": "^7.2.6", |
60 | | - "@types/lodash": "^4.14.34", |
61 | 32 | "cors": "^2.8.4", |
62 | | - "express": "^4.16.2", |
63 | | - "jsonwebtoken": "^8.2.1", |
| 33 | + "express": "^4.17.1", |
| 34 | + "jsonwebtoken": "^8.3.2", |
64 | 35 | "lodash": "^4.6.1" |
65 | 36 | }, |
66 | | - "engines": { |
67 | | - "node": ">=6.0.0" |
| 37 | + "devDependencies": { |
| 38 | + "@types/chai": "^4.1.7", |
| 39 | + "@types/chai-as-promised": "^7.1.0", |
| 40 | + "@types/cors": "^2.8.5", |
| 41 | + "@types/express": "^4.11.1", |
| 42 | + "@types/jsonwebtoken": "^8.3.2", |
| 43 | + "@types/lodash": "^4.14.133", |
| 44 | + "@types/mocha": "^5.2.7", |
| 45 | + "@types/mock-require": "^2.0.0", |
| 46 | + "@types/nock": "^10.0.2", |
| 47 | + "@types/node": "^8.10.49", |
| 48 | + "@types/sinon": "^7.0.12", |
| 49 | + "chai": "^4.2.0", |
| 50 | + "chai-as-promised": "^7.1.1", |
| 51 | + "firebase-admin": "^8.0.0", |
| 52 | + "istanbul": "^0.4.2", |
| 53 | + "mocha": "^6.1.4", |
| 54 | + "mock-require": "^3.0.3", |
| 55 | + "nock": "^10.0.6", |
| 56 | + "prettier": "^1.17.1", |
| 57 | + "sinon": "^7.3.2", |
| 58 | + "ts-node": "^8.2.0", |
| 59 | + "typescript": "^3.5.1" |
68 | 60 | }, |
69 | | - "typings": "lib/index.d.ts" |
| 61 | + "peerDependencies": { |
| 62 | + "firebase-admin": "^8.0.0" |
| 63 | + }, |
| 64 | + "engines": { |
| 65 | + "node": "^8.13.0 || >=10.10.0" |
| 66 | + } |
70 | 67 | } |
0 commit comments