forked from lmcq/firebase-firestorm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.45 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.45 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
90
91
92
93
94
95
96
97
{
"name": "@42devs/firebase-firestorm",
"version": "0.9.0",
"description": "A firestore ORM for Typescript",
"main": "lib/index.js",
"private": false,
"scripts": {
"build": "tsc",
"test": "GOOGLE_APPLICATION_CREDENTIALS='service-account.json' nyc --reporter=lcov mocha -r ts-node/register test/**/*.spec.ts && cat ./coverage/lcov.info | codacy-coverage",
"test:dev": "GOOGLE_APPLICATION_CREDENTIALS='service-account.json' nyc mocha -r ts-node/register test/**/*.spec.ts",
"docs": "typedoc --excludeExternals --mode file --out docs src",
"lint": "eslint src/**/*.ts",
"commit": "npx git-cz",
"semantic-release": "semantic-release"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"firestorm",
"firestore",
"firebase",
"orm"
],
"files": [
"lib/**/*"
],
"author": {
"name": "Nicolas Martinez",
"email": "nicolas@42devs.cl"
},
"repository": {
"type": "git",
"url": "https://github.com/42devs/firebase-firestorm"
},
"license": "MIT",
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**"
],
"exclude": [
"**/*.d.ts",
"**/*.spec.ts"
],
"reporter": [
"html"
],
"all": true
},
"remarkConfig": {
"plugins": [
"preset-lint-markdown-style-guide"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"firebase": "^9.10.0",
"firebase-admin": "^11.0.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"codacy-coverage": "^3.2.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.2",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"mocha": "^10.0.0",
"mocha-lcov-reporter": "^1.3.0",
"mock-cloud-firestore": "^0.12.0",
"nyc": "^15.1.0",
"remark-cli": "^11.0.0",
"remark-lint": "^9.1.1",
"remark-preset-lint-recommended": "^6.1.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typedoc": "^0.23.15",
"typescript": "^4.8.3"
}
}