-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.37 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
{
"devDependencies": {
"@firebase/app-types": "^0.7.0",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.6",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"auto-changelog": "^2.4.0",
"babel-eslint": "^10.1.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.3",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"scripts": {
"prepare": "husky install",
"test": "jest",
"build": "tsc",
"lint": "eslint --ext .ts --ignore-dir .gitignore .",
"postinstall": "npm shrinkwrap",
"changelog": "auto-changelog -p",
"sr": "semantic-release"
},
"name": "@42devs/firestore-parser",
"version": "1.0.0",
"main": "dist/index.ts",
"repository": "https://github.com/42devs/firestore-parser",
"author": {
"name": "Nicolas Martinez V,",
"email": "nicolas@42devs.cl"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"firebase-admin": "^11.0.1"
},
"directories": {
"src": "src"
}
}