-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.18 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
{
"name": "firelaw",
"version": "0.0.0-beta.4",
"description": "🔥Write truly safe and scalable Firestore Rules, Transpile Typescript to Security Rules!",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"bin": {
"firelaw": "./dist/src/index.js"
},
"scripts": {
"reinstall": "rm -rf node_modules && rm -rf package-lock.json && npm i && npx husky install",
"tsc": "tsc",
"lint": "eslint . --ext .ts --fix",
"pretty-quick": "pretty-quick --stage",
"test": "firebase emulators:exec --only firestore \"rm -rf coverage && jest --forceExit\"",
"parcel": "rm -rf dist && tsc --emitDeclarationOnly true && parcel build",
"build": "rm -rf dist && tsc && cp src/astBabel/settings.js dist/src/astBabel/settings.js",
"link": "npm link && npm link firelordjs",
"q-test": "jest src/astBabel/getAst.test.ts",
"q-node": "ts-node src/astTypescript/getAst.ts",
"dev": "---------------------dev------------------------",
"d-link": "npm run build && npm run link",
"d-test": "tsc && npm test",
"d-b-test": "npm run d-link && npm run b-tsc && npm run b-uninstall && npm run b-test",
"d-p-test": "npm run p-reinstall && npm run p-test",
"d-pub": "npm run build && npm publish --tag beta",
"built": "-------------test built file-----------------------",
"b-tsc": "tsc -p tsconfig.doc.json",
"b-test": "firebase emulators:exec --only firestore \"jest --forceExit -c=jest.config.doc.js\"",
"b-uninstall": "npm --prefix codeForDoc run uninstall",
"published": "-------------test published file-----------------------",
"p-reinstall": "npm --prefix codeForDoc run reinstall && ts-node --project tsconfig.doc.json scripts/installLatest.ts",
"p-test": "npm --prefix codeForDoc test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tylim88/firelaw.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/tylim88/firelaw/issues"
},
"homepage": "https://github.com/tylim88/firelaw#readme",
"keywords": [
"firebase",
"firestore",
"cli",
"security",
"rules",
"transpiler",
"typescript"
],
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-export-namespace-from": "^7.16.7",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"babel-jest": "^27.5.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"chalk": "^5.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.14.0",
"eslint-cli": "^1.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"firebase": "^9.6.11",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jsdoc": "^3.6.10",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"ts-essentials": "^9.1.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0"
},
"dependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@firebase/rules-unit-testing": "^2.0.2",
"commander": "^9.2.0",
"esbuild": "^0.14.38",
"firelordjs": "^1.1.11",
"glob": "^8.0.1",
"typescript": "^4.6.3",
"zod": "^3.15.1"
},
"peerDependencies": {
"firebase": "^9.6.6"
}
}