forked from mindhivefi/ts-mock-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.06 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@get-your-greenback-tompkins/ts-mock-firebase",
"version": "2.3.1",
"description": "Mock objects for Firebase",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf -f -r -d lib",
"prebuild": "yarn clean",
"build": "./node_modules/.bin/tsc",
"test": "jest --verbose --no-cache --maxWorkers=2",
"test:watch": "jest --watch",
"lint": "tslint --fix ./src/**/*.ts* --project .",
"semantic-release": "semantic-release",
"predeploy": "yarn build",
"deploy": "yarn deploy",
"commit": "yarn git-cz",
"check-package": "tar tvf $(npm pack)",
"dir": "ls"
},
"repository": {
"type": "git",
"url": "https://github.com/Get-Your-GreenBack-Tompkins/ts-mock-firebase.git"
},
"release": {
"verifyConditions": "condition-circle",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
},
"keywords": [
"firebase",
"mock",
"test",
"jest",
"firestore",
"auth",
"notifications",
"storage",
"typescript",
"javascript"
],
"author": "Ville Venäläinen <[email protected]> (https://www.mindhive.fi)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mindhivefi/ts-mock-firebase/issues"
},
"homepage": "https://github.com/mindhivefi/ts-mock-firebase#readme",
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/npm": "7.0.5",
"@types/antlr4": "4.7.2",
"@types/jest": "25.2.1",
"@types/uuid": "8.3.0",
"commitizen": "4.1.0",
"condition-circle": "2.0.2",
"git-cz": "3.0.1",
"husky": "4.2.5",
"jest": "25.5.4",
"rimraf": "3.0.2",
"semantic-release": "17.0.7",
"ts-jest": "25.4.0",
"tslint": "6.1.2",
"tslint-config-prettier": "1.18.0",
"tslint-sonarts": "1.9.0",
"typescript": "3.8.3"
},
"dependencies": {
"@firebase/app-types": "0.6.1",
"@firebase/auth": "0.14.9",
"@firebase/firestore": "1.16.5",
"@firebase/firestore-types": "1.12.0",
"@firebase/messaging": "0.7.0",
"@firebase/util": "0.3.1",
"antlr4": "4.8.0",
"firebase-rules-parser": "2.0.1",
"uuid": "8.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"precommit": "yarn lint && yarn test && yarn clean",
"build": "yarn build"
}
},
"files": [
"lib/**/*"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}