This repository has been archived by the owner on Jun 3, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
78 lines (78 loc) · 1.75 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
{
"name": "action-setup-firebase",
"version": "2",
"description": "Setup firebase tools CLI",
"main": "lib/main.js",
"scripts": {
"build": "tsc && yarn run package",
"lint": "eslint . --ext ts,tsx",
"lint:fix": "eslint . --ext ts,tsx --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pocket-studios/action-setup-firebase.git"
},
"keywords": [
"actions",
"firebase",
"setup",
"cli",
"tools"
],
"author": "Victor Navarro <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "1.2.6",
"command-exists": "^1.2.9"
},
"devDependencies": {
"@pocket-studios/eslint-config": "2.1.3",
"@pocket-studios/prettier-config": "1.0.0",
"@types/command-exists": "1.2.0",
"@types/jest": "26.0.13",
"@types/node": "14.6.2",
"@vercel/ncc": "0.24.0",
"eslint": "7.2.0",
"prettier": "2.1.2",
"husky": "4.2.5",
"jest": "26.4.2",
"lint-staged": "10.2.13",
"ts-jest": "26.3.0",
"typescript": "4.0.2"
},
"jest": {
"testMatch": [
"<rootDir>/tests/**/*.ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"ts"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|graphql|mdx)": [
"prettier --write"
]
},
"eslintConfig": {
"extends": [
"@pocket-studios/eslint-config"
]
},
"prettier": "@pocket-studios/prettier-config"
}