forked from firebase/firebase-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.89 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
116
117
118
119
120
121
122
123
{
"name": "firebase-wrapper",
"version": "0.1.0",
"description": "Monorepo for the Firebase JavaScript SDK",
"private": true,
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
"license": "Apache-2.0",
"homepage": "https://github.com/firebase/firebase-js-sdk",
"keywords": [
"authentication",
"database",
"Firebase",
"firebase",
"functions",
"realtime",
"storage",
"performance"
],
"scripts": {
"dev": "lerna run --parallel --scope @firebase/* --scope firebase --scope rxfire dev",
"build": "lerna run --scope @firebase/* --scope firebase --scope rxfire prepare",
"prepush": "node tools/gitHooks/prepush.js",
"link:packages": "lerna exec --scope @firebase/* --scope firebase --scope rxfire -- yarn link",
"stage:packages": "./scripts/prepublish.sh",
"repl": "node tools/repl.js",
"release": "node scripts/release/cli.js",
"pretest": "node tools/pretest.js",
"test": "lerna run --concurrency 4 --stream test",
"pretest:coverage": "mkdirp coverage",
"test:coverage": "lcov-result-merger 'packages/**/lcov.info' | coveralls",
"test:setup": "node tools/config.js",
"test:saucelabs": "node scripts/run_saucelabs.js",
"test:saucelabs:single": "karma start config/karma.saucelabs.js --single-run",
"docgen:js": "node scripts/docgen/generate-docs.js --api js",
"docgen:node": "node scripts/docgen/generate-docs.js --api node",
"docgen": "yarn docgen:js; yarn docgen:node",
"prettier": "prettier --config .prettierrc --write '**/*.{ts,js}'",
"lint": "lerna run --scope @firebase/* --scope rxfire lint"
},
"repository": {
"type": "git",
"url": "https://github.com/firebase/firebase-js-sdk.git"
},
"workspaces": [
"packages/*",
"integration/*"
],
"devDependencies": {
"@types/chai": "4.2.5",
"@types/chai-as-promised": "7.1.2",
"@types/long": "4.0.0",
"@types/mocha": "5.2.7",
"@types/node": "8.10.59",
"@types/sinon": "7.5.0",
"@types/sinon-chai": "3.2.3",
"@typescript-eslint/eslint-plugin": "2.7.0",
"@typescript-eslint/eslint-plugin-tslint": "2.7.0",
"@typescript-eslint/parser": "2.7.0",
"babel-loader": "8.0.6",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chalk": "3.0.0",
"child-process-promise": "2.2.1",
"clone": "2.1.2",
"coveralls": "3.0.7",
"del": "5.1.0",
"dependency-graph": "0.8.0",
"eslint": "6.6.0",
"eslint-plugin-import": "2.18.2",
"express": "4.17.1",
"find-free-port": "2.0.0",
"firebase-functions": "3.3.0",
"firebase-tools": "7.7.0",
"git-rev-sync": "1.12.0",
"glob": "7.1.6",
"http-server": "0.11.1",
"husky": "3.1.0",
"indexeddbshim": "5.0.0",
"inquirer": "7.0.0",
"istanbul-instrumenter-loader": "3.0.1",
"js-yaml": "3.13.1",
"karma": "4.4.1",
"karma-chrome-launcher": "3.1.0",
"karma-cli": "2.0.0",
"karma-coverage-istanbul-reporter": "2.1.0",
"karma-firefox-launcher": "1.2.0",
"karma-mocha": "1.3.0",
"karma-safari-launcher": "1.0.0",
"karma-sauce-launcher": "1.2.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-summary-reporter": "1.7.1",
"karma-webpack": "4.0.2",
"lcov-result-merger": "3.1.0",
"lerna": "3.18.4",
"listr": "0.14.3",
"long": "3.2.0",
"merge2": "1.3.0",
"mkdirp": "0.5.1",
"mocha": "6.2.2",
"mz": "2.7.0",
"npm-run-all": "4.1.5",
"npm-run-path": "4.0.0",
"nyc": "14.1.1",
"ora": "4.0.3",
"prettier": "1.19.1",
"protractor": "5.4.2",
"rxjs": "6.5.3",
"semver": "6.3.0",
"simple-git": "1.126.0",
"sinon": "7.5.0",
"sinon-chai": "3.3.0",
"source-map-loader": "0.2.4",
"ts-loader": "6.2.1",
"ts-node": "8.5.2",
"tslint": "5.20.1",
"typedoc": "0.15.2",
"typescript": "3.7.3",
"watch": "1.0.2",
"webpack": "4.41.2",
"yargs": "15.0.2"
}
}