-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.13 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
{
"name": "firebase-private-key-to-env",
"version": "1.0.0",
"repository": "github:WillBooster/firebase-private-key-to-env",
"license": "Apache-2.0",
"author": "WillBooster Inc.",
"main": "src/index.ts",
"scripts": {
"cleanup": "yarn format && yarn lint-fix",
"format": "sort-package-json && yarn prettify",
"postinstall": "husky || true",
"lint": "eslint --color \"./{scripts,src,tests}/**/*.{cjs,cts,js,jsx,mjs,mts,ts,tsx}\"",
"lint-fix": "yarn lint --fix",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"prepare": "husky || true",
"prettify": "prettier --cache --color --write \"**/{.*/,}*.{cjs,css,cts,htm,html,js,json,json5,jsonc,jsx,md,mjs,mts,scss,ts,tsx,vue,yaml,yml}\" \"!**/test-fixtures/**\"",
"start": "babel-node -x .js,.jsx,.es6,.es,.ts src/index.ts",
"typecheck": "tsc --noEmit --Pretty"
},
"prettier": "@willbooster/prettier-config",
"dependencies": {
"core-js": "3.39.0",
"yargs": "16.2.0"
},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@babel/node": "7.26.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-numeric-separator": "7.18.6",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@types/eslint": "8.56.11",
"@types/micromatch": "4.0.9",
"@types/node": "18.19.69",
"@types/yargs": "16.0.9",
"@typescript-eslint/eslint-plugin": "8.19.0",
"@typescript-eslint/parser": "8.19.0",
"@willbooster/eslint-config-ts": "10.6.1",
"@willbooster/prettier-config": "9.1.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-sort-class-members": "1.21.0",
"eslint-plugin-sort-destructure-keys": "2.0.0",
"eslint-plugin-unicorn": "56.0.1",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"micromatch": "4.0.8",
"pinst": "3.0.0",
"prettier": "3.4.2",
"sort-package-json": "2.12.0",
"typescript": "5.7.2"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
}
}