-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
131 lines (131 loc) · 4.01 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
124
125
126
127
128
129
130
131
{
"name": "firesword",
"version": "2.1.12",
"description": "🔥Filter Firestore and RTDB Unknown Keys Or Keys Incorrect With Incorrect Data Types Recursively, Support All Field Values And Special Data Types.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"reinstall": "rm -rf node_modules && rm -rf package-lock.json && npm i && npx husky install",
"tsc": "tsc",
"lint": "eslint . --ext .ts --fix",
"pretty": "pretty-quick --stage",
"test": "rm -rf coverage && jest",
"rollup": "rm -rf dist && rollup -c",
"build": "rm -rf dist && tsc -p tsconfig.prod.json && tsc -p tsconfig.prodESM.json",
"link": "npm unlink firesword && npm link && npm link firesword",
"babel": "babel-node -x .ts -- src/index.ts",
"jest": "jest src/common/filter.test.ts --collectCoverage=false",
"commit": "git commit --no-verify",
"dev": "---------------------dev------------------------",
"d-link": "npm run build && npm run link",
"d-test": "tsc && npm test",
"d-b-tsc": "npm run d-link && npm run b-uninstall && npm run b-tsc",
"d-b-test": "npm run d-b-tsc && npm run b-test",
"d-p-tsc": "npm run p-reinstall && npm run p-tsc",
"d-p-test": "npm run d-p-tsc && 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": "jest -c=jest.config.doc.js && jest -c=jest.config.docESM.js",
"b-uninstall": "npm --prefix codeForDoc run uninstall",
"published": "-------------test published file-----------------------",
"p-reinstall": "npm --prefix codeForDoc run reinstall && babel-node -x .ts scripts/installLatest.ts",
"p-test": "npm --prefix codeForDoc test",
"p-tsc": "npm --prefix codeForDoc run tsc"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,json,yml}": [
"eslint --fix",
"npm run pretty"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/tylim88/firesword.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tylim88/firesword/issues"
},
"homepage": "https://firelordjs.com/firesage/quick_start",
"keywords": [
"firebase",
"firestore",
"database",
"filter",
"validate",
"zod"
],
"devDependencies": {
"@babel/node": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-typescript": "^8.5.0",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.182",
"@types/shelljs": "^0.8.11",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"betwin": "^2.1.0",
"dotenv": "^16.0.1",
"eslint": "^8.21.0",
"eslint-cli": "^1.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-yml": "^1.5.0",
"firebase": "^9.10.0",
"firebase-admin": "^11.0.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lodash": "^4.17.21",
"pick-random": "^3.0.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rollup": "^2.79.0",
"rollup-plugin-terser": "^7.0.2",
"shelljs": "^0.8.5",
"tsdoc": "^0.0.4",
"typescript": "^4.9.4",
"uuid": "^8.3.2",
"zod": "^3.19.1"
},
"peerDependencies": {
"zod": "^3.19.1"
},
"exports": {
".": null,
"./firestore-admin": {
"types": "./dist/firestore-admin/index.d.ts",
"require": "./dist/firestore-admin/index.js",
"import": "./dist/esm/firestore-admin/index.js"
},
"./firestore-web": {
"types": "./dist/firestore-web/index.d.ts",
"require": "./dist/firestore-web/index.js",
"import": "./dist/esm/firestore-web/index.js"
},
"./database": {
"types": "./dist/database/index.d.ts",
"require": "./dist/database/index.js",
"import": "./dist/esm/database/index.js"
}
},
"typesVersions": {
"*": {
"firestore-admin": [
"dist/firestore-admin"
],
"firestore-web": [
"dist/firestore-admin"
],
"database": [
"dist/database"
]
}
}
}