forked from samuelgozi/firebase-firestore-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "firebase-firestore-lite",
"version": "1.0.0-RC1.2",
"description": "A lightweight cloud firestore library for the browser",
"main": "dist/mod.js",
"types": "dist/mod.d.ts",
"author": "Samuel Elgozi <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/samuelgozi/firebase-firestore-lite.git"
},
"scripts": {
"cleanup": "node scripts/cleanup.js dist",
"build": "npm run cleanup && tsc",
"lint": "eslint . --ext .ts",
"test": "jest",
"doc": "typedoc",
"prepublishOnly": "tsc"
},
"devDependencies": {
"@babel/core": "^7.10.0",
"@babel/preset-env": "^7.10.3",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.2.3",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-prettier": "^3.1.3",
"firebase-auth-lite": "^0.8.2",
"jest": "^26.0.1",
"jest-fetch-mock": "^3.0.3",
"typedoc": "^0.17.7",
"typescript": "^3.9.3"
}
}