-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.53 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.53 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
{
"name": "firesql",
"version": "2.0.1",
"description": "Query Cloud Firestore for Firebase using SQL",
"keywords": [],
"main": "release/firesql.umd.js",
"module": "release/firesql.umd.js",
"exports": "./release/firesql.umd.js",
"author": "Josep Sayol <josep.sayol@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/jsayol/FireSQL"
},
"license": "MIT",
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "npm run pegjs && rimraf out",
"build": "tsc --module commonjs && rollup -c rollup.config.js",
"start": "rollup -c rollup.config.js -w",
"test": "ts-node --project tools/tsconfig.json tools/run-tests.ts",
"test:emulator": "ts-node --project tools/tsconfig.json tools/tests/emulator/index.ts",
"test:watch": "jest --verbose --watch",
"test:prod": "npm run lint && npm run test --coverage --no-cache",
"test:setup": "ts-node --project tools/tsconfig.json tools/tests/test-setup.ts",
"ts-node": "ts-node",
"release:prepare": "npm run build && ts-node tools/prepare-release.ts",
"npm:publish": "cd release && npm publish",
"pegjs": "pegjs --extra-options-file pegjs.config.json"
},
"prettier": {
"semi": true,
"singleQuote": true,
"printWidth": 80
},
"devDependencies": {
"@firebase/testing": "0.20.11",
"@types/core-js": "2.5.5",
"@types/jest": "29.5.3",
"@types/jest-cli": "24.3.0",
"@types/node": "20.5.0",
"chalk": "5.3.0",
"colors": "1.4.0",
"cross-env": "7.0.3",
"firebase": "8.10.1",
"firebase-tools": "12.4.8",
"fs-extra": "11.1.1",
"inquirer": "9.2.10",
"jest": "29.6.2",
"jest-config": "29.6.2",
"lodash.camelcase": "4.3.0",
"log-update": "5.0.1",
"pegjs": "0.10.0",
"prettier": "3.0.2",
"prompt": "1.3.0",
"prompt-input": "3.0.0",
"rimraf": "5.0.1",
"rollup": "3.28.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-typescript2": "0.35.0",
"rollup-plugin-uglify": "6.0.4",
"rxfire": "4.0.0",
"rxjs": "7.8.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "9.0.0",
"typescript": "5.1.6"
},
"dependencies": {
"core-js": "3.32.0",
"node-pre-gyp": "0.17.0"
},
"peerDependencies": {
"firebase": "*",
"rxfire": "*",
"rxjs": "*"
},
"resolutions": {
"grpc": "1.12.0"
}
}