-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 966 Bytes
/
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
{
"name": "git-blame-ignore-revs-linter",
"version": "1.1.0",
"description": "Check for semantic issues in `.git-blame-ignore-revs` -- wrong commit, duplicates, etc.",
"type": "module",
"bin": "bin/checks-revs.js",
"repository": "github:outdatedversion/git-blame-ignore-revs-linter",
"license": "MIT",
"types": "dist/linter.d.ts",
"bugs": {
"url": "https://github.com/outdatedversion/git-blame-ignore-revs-linter/issues"
},
"files": [
"dist/",
"dist/linter.d.ts",
"!dist/*.test.js",
"!dist/*.d.ts"
],
"exports": "./dist/linter.js",
"engines": {
"node": ">= 16"
},
"scripts": {
"build": "rm -rf dist && tsc",
"pretest": "npm run build",
"test": "node --test-reporter spec --experimental-test-coverage --test dist/linter.test.js",
"format": "prettier . --list-different --write"
},
"devDependencies": {
"@types/node": "^20.3.3",
"prettier": "^2.8.8",
"typescript": "^5.1.6"
}
}