-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·73 lines (73 loc) · 1.91 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
{
"name": "ts-firebase-rules",
"description": "enjoy using TypeScript power while proggraming firebase *.rules files",
"author": "aminZarei72",
"version": "0.1.12",
"license": "MIT",
"homepage": "https://github.com/aminZarei72/ts-firebase-rules",
"repository": {
"type": "git",
"url": "git+https://github.com/aminZarei72/ts-firebase-rules.git"
},
"bugs": {
"url": "https://github.com/aminZarei72/ts-firebase-rules/issues"
},
"files": [
"dist",
"index.ts",
"templates",
"otherRequiredFiles"
],
"keywords": [
"tsfr",
"ts-firebase-rules",
"typescript",
"rules",
"compiler",
"firebase compiler",
"firestore compiler",
"cli",
"firebase"
],
"bin": {
"tsfr": "./dist/cli/index.js"
},
"engines": {
"node": ">=12"
},
"scripts": {
"watch": "npm run watch-ts",
"watch-ts": "tsc -w",
"build": "tsc -p tsconfig.json",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"chalk": "4.0.0",
"enquirer": "2.3.4",
"fs-extra": "10.0.0",
"ora": "5.4.1",
"progress-estimator": "0.3.0",
"sade": "1.4.2",
"shelljs": "0.8.5",
"ts_for_tsfr": "npm:typescript@4.1.5",
"tslib": "2.3.0"
},
"devDependencies": {
"@types/compression": "1.0.1",
"@types/eslint": "6.1.1",
"@types/fs-extra": "9.0.1",
"@types/jest": "24.0.18",
"@types/node": "12.7.8",
"@types/sade": "1.6.0",
"@types/shelljs": "0.8.5",
"@typescript-eslint/eslint-plugin": "2.3.1",
"@typescript-eslint/parser": "2.3.1",
"doctoc": "2.0.1",
"eslint": "6.4.0",
"husky": "7.0.1",
"jest": "24.9.0",
"ts-jest": "^24.1.0",
"typescript": "4.3.5"
}
}