-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
{
"name": "coconfig",
"version": "1.6.1",
"description": "Centralize your per-package rc, dotfile and config files into one extensible config file",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.build.json && chmod a+x build/bin/*.js",
"clean": "yarn dlx rimraf ./build",
"lint": "eslint src --ext .ts,.js",
"postinstall": "husky install && ts-node src/bin/cli.ts",
"inception": "ts-node src/bin/cli.ts"
},
"bin": "build/bin/cli.js",
"engines": {
"node": ">12.0.0"
},
"author": "GasBuddy Developers <developers@gasbuddy.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gas-buddy/coconfig.git"
},
"keywords": [
"typescript",
"gasbuddy"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": "yarn eslint --cache --fix"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/minimist": "^1.2.5",
"@types/node": "^20.16.13",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-openapi": "^0.14.2",
"lint-staged": "^15.2.10",
"pinst": "^3.0.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"dotgitignore": "^2.1.0",
"find-up": "^4.1.0",
"make-dir": "^4.0.0",
"minimist": "^1.2.8",
"read-pkg-up": "^7.0.1"
},
"packageManager": "yarn@3.2.4"
}