-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "parse-git-patch",
"version": "2.1.1",
"description": "Parse git patches with ease",
"main": "dist/src/index.js",
"types": "dist/src/index.d.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dherault/parse-git-patch.git"
},
"keywords": [
"git",
"patch",
"patches",
"diff",
"parse",
"parser"
],
"author": "David Hérault <[email protected]> (https://github.com/dherault)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dherault/parse-git-patch/issues"
},
"homepage": "https://github.com/dherault/parse-git-patch#readme",
"scripts": {
"lint": "tsc --noEmit && eslint ./src --ext ts --report-unused-disable-directives --max-warnings 0",
"test": "jest --coverage",
"build": "tsc --declaration",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.10",
"eslint": "^8.46.0",
"eslint-config-dherault-typescript": "^1.4.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}