This repository has been archived by the owner on Dec 14, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
85 lines (85 loc) · 2.13 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
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
{
"name": "firebase-firestorm",
"version": "0.0.0-development",
"description": "A firestore ORM for Typescript",
"main": "lib/index.js",
"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"
},
"keywords": [
"firestorm",
"firestore",
"firebase",
"orm"
],
"files": [
"lib/**/*"
],
"author": "Lewis McQuillan",
"repository": {
"type": "git",
"url": "https://github.com/lmcq/firebase-firestorm"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codacy-coverage": "^3.4.0",
"cz-conventional-changelog": "^3.0.2",
"dotenv": "^8.1.0",
"eslint": "^6.2.2",
"firebase-admin": "^8.4.0",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mock-cloud-firestore": "^0.9.3",
"nyc": "^14.1.1",
"remark-cli": "^7.0.0",
"remark-lint": "^6.0.5",
"remark-preset-lint-recommended": "^3.0.3",
"source-map-support": "^0.5.12",
"ts-node": "^8.3.0",
"typedoc": "^0.15.0",
"typescript": "^3.5.3"
},
"dependencies": {
"firebase": "^6.5.0",
"reflect-metadata": "^0.1.13"
},
"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"
}
}
}