-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
88 lines (88 loc) · 2.21 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
{
"name": "git-parse",
"version": "3.0.1",
"description": "Turn a git repository into a javascript object.",
"main": "dist",
"scripts": {
"test": "jest",
"tsc": "tsc",
"build:babel": "babel src --out-dir dist --extensions '.ts' --source-maps inline --ignore '**/__tests__/*'",
"build": "yarn build:babel && yarn tsc",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"lint": "eslint src/**/*.ts",
"build:watch": "yarn build:babel --watch & yarn tsc --watch",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"author": "",
"dependencies": {
"byline": "5.0.0",
"util.promisify": "1.1.1"
},
"license": "BSD-2-Clause",
"contributors": [
{
"name": "Suzi Curran",
"email": "[email protected]"
},
{
"name": "Morgan Packard",
"email": "[email protected]"
},
{
"name": "Gary White",
"email": "[email protected]"
},
{
"name": "Dan Rowe",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/wayfair/git-parse"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.19.4",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/byline": "^4.2.33",
"@types/jest": "^29.0.0",
"@types/util.promisify": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "8.31.0",
"husky": "^8.0.1",
"jest": "^29.0.0",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"resolutions": {
"minimist": "^1.2.6",
"json-schema": "^0.4.0",
"node-fetch": "^3.0.0"
},
"jest": {
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.[jt]s?(x)"
]
},
"files": [
"dist"
],
"keywords": [
"git"
],
"engines": {
"node": ">=14"
},
"packageManager": "[email protected]"
}