-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
82 lines (82 loc) · 2.5 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
{
"name": "firesql-src",
"version": "2.0.1",
"description": "Query Cloud Firestore for Firebase using SQL",
"keywords": [],
"main": "out/firesql.js",
"typings": "out/types/index.d.ts",
"author": "Josep Sayol <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/jsayol/FireSQL"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "yarn 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": "yarn run lint && yarn run test --coverage --no-cache",
"test:setup": "ts-node --project tools/tsconfig.json tools/tests/test-setup.ts",
"ts-node": "ts-node",
"release:prepare": "yarn 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.5.3",
"@types/core-js": "^2.5.0",
"@types/jest": "^23.3.9",
"@types/jest-cli": "^23.6.0",
"@types/node": "^10.11.0",
"chalk": "^2.4.1",
"colors": "^1.3.2",
"cross-env": "^5.2.0",
"firebase": "^6.0.0",
"firebase-tools": "^6.1.0",
"fs-extra": "^7.0.1",
"inquirer": "^6.2.0",
"jest": "^23.6.0",
"jest-config": "^23.6.0",
"lodash.camelcase": "^4.3.0",
"log-update": "^2.3.0",
"pegjs": "0.11.0-master.30f3260",
"prettier": "^1.14.3",
"prompt": "^1.0.0",
"prompt-input": "^3.0.0",
"rimraf": "^2.6.2",
"rollup": "^0.66.2",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.17.0",
"rollup-plugin-uglify": "^6.0.0",
"rxfire": "^3.0.10",
"rxjs": "^6.3.3",
"ts-jest": "^23.10.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.0.3"
},
"dependencies": {
"core-js": "^3.0.1"
},
"peerDependencies": {
"firebase": "*",
"rxfire": "*",
"rxjs": "*"
}
}