-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·91 lines (91 loc) · 2.76 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
{
"name": "firemock",
"version": "0.38.10",
"description": "firemock",
"license": "MIT",
"repository": "[email protected]:forest-fire/firemock.git",
"author": "Ken Snyder<[email protected]>",
"keywords": [
"typescript",
"firebase",
"mocking",
"testing"
],
"files": [
"dist"
],
"module": "dist/esnext/index.js",
"typings": "dist/esnext/index.d.ts",
"main": "dist/cjs/index.js",
"scripts": {
"clean": "rimraf dist",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"build": "yarn run clean && tsc -P tsconfig.esnext.json && tsc -P tsconfig.json",
"clean:nuclear": "rimraf lib dist node_modeles && yarn cache clean && rm yarn.lock && yarn && yarn upgrade",
"docs": "vuepress dev docs",
"build:docs": "vuepress build docs",
"test": "ts-node ./scripts/test.ts",
"coverage": "nyc --reporter=text --reporter=html mocha --compilers ts:ts-node/register",
"watch": "ts-node ./scripts/watch.ts",
"watch:test": "ts-node ./scripts/watch.ts test",
"watch:all": "ts-node ./scripts/watch.ts all",
"deploy": "ts-node ./scripts/deploy.ts ",
"info": "yarn do info",
"circular": "yarn run madge --circular --extensions ts ./src"
},
"dependencies": {
"@firebase/app": "^0.6.0",
"@firebase/app-types": "^0.6.0",
"@firebase/auth-types": "^0.10.0",
"@firebase/database-types": "^0.5.0",
"@types/faker": "^4.1.9",
"common-types": "^1.14.2",
"deepmerge": "^4.2.2",
"email-validator": "^2.0.4",
"faker": "^4.1.0",
"fast-copy": "^2.0.4",
"fast-equals": "^2.0.0",
"firebase-admin": "^8.11.0",
"firebase-key": "^2.0.2",
"lodash.first": "^3.0.0",
"lodash.get": "^4.4.2",
"lodash.last": "^3.0.0",
"lodash.set": "^4.3.2",
"serialized-query": "^0.11.2",
"typed-conversions": "^0.10.2"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/deepmerge": "^2.2.0",
"@types/js-yaml": "^3.12.1",
"@types/lodash.first": "^3.0.6",
"@types/lodash.get": "^4.4.6",
"@types/lodash.last": "^3.0.6",
"@types/lodash.set": "^4.3.6",
"@types/mocha": "^7.0.1",
"@types/node": "^8.0.0",
"@types/rimraf": "^2.0.3",
"@types/stack-trace": "^0.0.29",
"@vuepress/plugin-back-to-top": "^1.4.1",
"@vuepress/plugin-last-updated": "^1.4.1",
"@vuepress/plugin-medium-zoom": "^1.4.1",
"@vuepress/plugin-pwa": "^1.4.1",
"async-shelljs": "^0.1.4",
"chai": "^4.2.0",
"chalk": "^4.0.0",
"do-devops": "^0.3.5",
"madge": "^3.8.0",
"mocha": "^7.1.1",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"test-console": "^1.1.0",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3",
"vuepress": "^1.4.1"
},
"engines": {
"node": ">=8.0.0"
}
}